* {
    margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
   background-color: #ffffff;
}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 0;
  position: sticky;
    top: 0;
  z-index    :     1000;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.navbar-container {
	max-width: 1200px;
    margin: 0 auto;
    padding :    0 20px;
   display: flex;
	justify-content: space-between;
	 align-items    :       center;
	height: 70px;


}

.navbar-logo     {
   display: flex;
  align-items: center;
}
	/* State modifiers */
	/* Production ready */

/* Legacy code */


.logo-img {
	height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu		{
  display  : flex;

	   list-style   :     none;

	    gap: 30px;
     }

/* Responsive design */

.nav-item {
   margin: 0;
}
	/* Debug styles */


/* Cross-browser fix */

.nav-link {
     position: relative;
	 font-weight: 600;
     transition: all 0.3s ease;
	 text-decoration: none;
  font-size: 16px;
  color: #ffffff;


}

.nav-link:hover {
   opacity: 0.8;
}

.nav-link::after
{
  content: '';
  position: absolute;
   bottom  : -5px;
   left: 0;
                    width: 0;
  height: 2px;
   background-color   :   #ffffff;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	   width: 100%;

}

.hamburger {
      display: none;

   flex-direction     :        column;

	background: transparent;

  border: none;

    cursor: pointer;

  gap   : 6px;
}

.hamburger span {
  width: 25px;
    height: 3px;
    background-color: #ffffff;
   border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {

	   opacity: 0;

     }

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
	/* TODO: optimize for mobile */


.hero    {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  padding: 100px 20px;
  display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center;
   max-width: 1200px;
  margin: 0 auto;
	}

.hero-content h1 {
  font-size   :      48px;
    margin-bottom: 20px;
   line-height: 1.2;
 font-weight :      700;
}

.hero-subtitle {
   font-size    :    20px;
   margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-image {
    width: 100%; 

}

.hero-image img {
   width: 100%;
   height: auto;
   border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
	/* Utility classes */




.cta-button {
   display: inline-block;

   background-color  :     #ffffff;

    color: #667eea;

    padding: 15px 40px;

    border-radius: 50px;

  text-decoration: none;

       font-weight: 700;

   font-size: 16px;

  transition: all 0.3s ease;

	border: 2px solid #ffffff;

    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
	
}

.cta-button-large {

	   padding: 18px 50px;
   font-size: 18px;}

/* Hack for old browsers */


/* Utility classes */


/* Temporary fix */


.features {
  padding: 100px 20px;

	  background-color: #f8f9fa;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}



.features-container h2 {
    font-size: 42px;
       text-align: center;
       margin-bottom: 60px;
      color: #2c3e50;
}

/* Framework override */

.features-grid  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
}

.feature-card		{


  background: #ffffff;
    padding: 40px 30px;
   border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	
	}

.feature-card:hover {


  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
	}



.feature-icon  
  {
  width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
   justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
}

.feature-icon img {
   width:  40px;
   height: 40px;
    stroke   : #ffffff;
  fill: none;
  filter: brightness(0) invert(1);
}

.feature-card h3 {
	font-size: 22px;
  margin-bottom: 15px;
   color: #2c3e50;
}

.feature-card p {
   font-size: 16px;
   color: #666;
	line-height: 1.6;
}

.services-preview {

   padding: 100px 20px;
  max-width     :    1200px;
   margin :   0 auto;
	}

.services-preview h2 {
	 font-size   :    42px;
   text-align     : center;
    margin-bottom: 60px;
  color: #2c3e50;
}

.services-cards {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	  gap     :        40px;


}

.service-item {
   background     :     #ffffff;
  border-radius: 15px;
  overflow: hidden;
         transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
} 

.service-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
}

.service-item img {
   width: 100%;
  height: 250px;
   object-fit: cover;
}

.service-item h3 {
   font-size: 22px;
  padding: 25px 25px 15px;
    color: #2c3e50;
}

.service-item p {
  padding: 0 25px 25px;
	color: #666;
   font-size: 15px;
    line-height :     1.6;
}

.subscription-models {
   padding:  100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.models-container     {
	    max-width: 1200px;
    margin: 0 auto;
	}

/* Minified version */

.models-container h2 {
    color: #2c3e50;
   font-size: 42px;
   margin-bottom: 20px;
    text-align: center;
	
}

.models-intro {

   margin-bottom: 60px;
  font-size     :      18px;
    color: #666;
   text-align: center;
	}  

.models-list {
   display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.model-item  
  {
    background: #ffffff;
               padding: 35px 30px;
   border-radius: 12px;
  border-left: 4px solid #667eea;
   transition: all 0.3s ease;
}

.model-item:hover {
  transform: translateX(10px);
	  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.model-item h4     {
  font-size   :   20px;
    color: #2c3e50;
   margin-bottom: 12px;
}
	/* Auto-generated CSS */

	/* TODO: optimize for mobile */
	/* NOTE: keep for legacy support */

.model-item p {
    color: #666;
  font-size: 15px;
  line-height: 1.6;
	
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
  padding: 80px 20px;
   text-align: center;
}

.cta-content {
   max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
   font-size: 44px;
    margin-bottom: 25px;
}

.cta-section p {
	font-size: 18px;
  margin-bottom: 40px;
    opacity: 0.95;

}

.contact-section {

  padding: 100px 20px;
    background-color: #f8f9fa;


}

.contact-container {

  max-width  :1200px;
	margin: 0 auto;


}

.contact-section h2 {
    font-size: 42px;
	 text-align: center;
  margin-bottom     :        15px;
	color: #2c3e50;
}

.contact-intro {
   text-align: center;
   font-size: 18px;
   color: #666;
      margin-bottom: 60px;
	
}

.contact-wrapper {
   display: grid;
    grid-template-columns: 1fr 1fr;
        gap: 60px;
}

/* TODO: optimize for mobile */
.contact-form {
    background: #ffffff;
   padding: 40px;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px; 
	
}

.form-group label {
    display: block;
   margin-bottom: 10px;
    font-weight :       600;
    color     : #2c3e50;
   font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
	 width: 100%;
  padding: 12px 15px;
  border     :        2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
	transition: all 0.3s ease;
}
/* TODO: optimize for mobile */


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    min-height  :        120px;
	resize: vertical;
}

.submit-button {
   width: 100%;
    padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
    border: none;
    border-radius: 8px;
	 font-size: 16px;
  font-weight  :    700;
   cursor     :  pointer;
   transition    :   all 0.3s ease;


}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-info {
  display  :        flex;
   flex-direction: column;
  gap: 40px;
}  

.contact-info h3 {
   font-size: 24px;
   color: #2c3e50;
    margin-bottom: 20px;
}

.info-block {

	    background: #ffffff;
     padding: 25px;
	 border-radius :   12px;
          border-left: 4px solid #667eea;

}

.info-block h4 {
   font-size: 16px;
	color: #667eea;
    margin-bottom: 10px;
  font-weight     :   700; 
	
}

.info-block p {
   color: #666;
   line-height :      1.8;
  font-size: 15px;
}

.footer {


  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #ecf0f1;
    padding: 60px 20px 30px;


}

.footer-container {
  max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
  margin-bottom: 40px;
        padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {

    font-size: 18px;
        margin-bottom: 20px;
  color: #ffffff;
   font-weight:700;
     }

.footer-brand {
    display: flex;
   align-items: flex-start;
}

.footer-logo {
    height: 50px;
   width:     auto;
  filter: brightness(0) invert(1);
} 

.footer-links ul {
  list-style: none;
}
	/* Custom modifications */



/* Custom modifications */
.footer-links li {
   margin-bottom: 12px;
}
/* Generated styles */


.footer-links a	{
    color: #ecf0f1;
    text-decoration: none;
   transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
	  color: #667eea;
    padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
   font-size: 15px;
    line-height: 1.8;
    color: #ecf0f1;
}

.footer-bottom  {
   text-align: center;
    font-size: 14px;
   color: #aaa;
}
/* Temporary fix */


.footer-bottom p {
	margin-bottom  : 8px;
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .models-list {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-container h2,
    .services-preview h2,
    .models-container h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 32px;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .features-container h2,
    .services-preview h2,
    .models-container h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  padding: 80px 20px;
    text-align: center;
}

.services-hero-content {


 margin: 0 auto;
  max-width: 900px;}

.services-hero-content h1 {
  font-size: 48px;
    margin-bottom   :     20px;
  line-height: 1.2;
   font-weight    :     700;
}

.services-hero-subtitle {
    line-height: 1.6;
    font-size: 20px;
    opacity    :    0.95;
}

.services-detailed {
    padding     :      100px 20px;
  max-width:        1200px;
    margin: 0 auto;
}

.services-detailed-container h2 {
  font-size: 42px;
   text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.service-detailed-item

{
     display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 60px;
   align-items: center;
  margin-bottom: 100px;
}

.service-detailed-item.service-reversed {


  direction: rtl;}

.service-detailed-item.service-reversed .service-content,
.service-detailed-item.service-reversed .service-image {
   direction: ltr;
}

.service-content h3 {
  font-size: 32px;
 color   :#2c3e50;
   margin-bottom: 20px;
   font-weight: 700;
}

.service-content p		{
    font-size: 16px;
	    color: #666;
	    line-height: 1.8;
	    margin-bottom: 25px;
}

.service-details-list {
    margin: 30px 0; 
	  display: flex; 
	  flex-direction: column; 
	   gap: 15px;
}

.detail-item {
	display: flex;
  gap: 15px;
  font-size: 15px;
         color: #555;
   align-items: flex-start;
}

.detail-icon {
  color :    #667eea;
  font-weight: 700;
        font-size   :    18px;
          margin-top  :       2px;
   flex-shrink: 0;
}

.service-pricing {
  background: #f0f4ff;
  padding: 20px;
   border-radius : 12px;
    display: flex;
                    align-items: baseline;
      gap: 10px;
  margin-top: 30px;
}

.price-label {
  font-size:      14px;
   color: #667eea;
  font-weight: 600;
}

.price     {
    font-size   : 36px;
   font-weight     : 700;
    color :  #667eea;
}

.price-period {
	font-size: 14px;
   color: #666;
   margin-left: auto;
}

.service-image   {
   width: 100%;


}

.service-image img {
  width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  transition: transform 0.3s ease;
}

.service-detailed-item:hover .service-image img {
  transform: scale(1.05);
	}



.comparison-section {
      padding     : 100px 20px;
   background-color: #f8f9fa;
	
}

.comparison-container {
    max-width: 1200px;
   margin  :0 auto;
}


.comparison-container h2 {


   font-size: 42px;
  text-align     :     center;
   margin-bottom:       60px;
        color: #2c3e50;
	}

.comparison-table {

  background: #ffffff;
               border-radius: 15px;
  overflow  :        hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);


}

.table-header {

    display:      grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   font-weight: 700;
   gap :   0;
	}

.table-col {

  padding  :     25px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
      text-align: center;
	}



.table-col:last-child
	{
          border-right: none;
}

.col-feature {
  text-align    :    left;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.table-row {
                    display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
   border-bottom: 1px solid #e0e0e0;
    gap: 0; 

}

.table-row:last-child {
	 border-bottom  :       none;
}

.table-row .table-col {
  padding: 20px 25px;
  border-right  :     1px solid #e0e0e0;
  font-size: 14px;
    display: flex;
	align-items: center;
    justify-content: center;
}  

.table-row .table-col:last-child {
    border-right: none;
}

.table-row .col-feature {
   text-align: left;
  background: transparent;
    font-weight:   600;
  color: #2c3e50;
	
}

.table-row:nth-child(odd){
     background-color: #f8f9fa;
}

.faq-section
	{
    padding: 100px 20px;
}

.faq-container {
	max-width  :   900px;
   margin: 0 auto;


}

.faq-container h2 {

	 font-size: 42px;
  text-align :    center;
    margin-bottom :      60px;
	 color: #2c3e50;
     }

.faq-items

{
                    display: flex;
	 flex-direction: column;
   gap: 20px;
	
}

.faq-item {
    background: #ffffff;
      border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
}

.faq-question {
   width: 100%;
    padding :    25px;
	background: #ffffff;
   border: none;
	cursor: pointer;
    font-size: 16px;
        font-weight: 600;
	 color: #2c3e50;
	display: flex;
    justify-content: space-between;
   align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
                    background-color: #f8f9fa;
  color   :      #667eea;
}

.faq-icon {
   	font-size: 24px;
   transition: transform 0.3s ease;
  color: #667eea;}

.faq-answer {
   max-height: 0;
               -webkit-transition     :        max-height 0.3s ease;
      overflow: hidden;
   transition: max-height 0.3s ease;
   -moz-transition: max-height 0.3s ease;
}

.faq-answer.active	{


	max-height: 300px; 
	


}  

.faq-answer p {
  padding :0 25px 25px;
     color   :#666;
        line-height   :  1.8;
   font-size: 15px;
	
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {


  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    color: #667eea;
	}

.cta-section-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
  padding: 100px 20px;
  text-align    :       center;
}

.cta-content-services     {
	   max-width: 800px;
    margin: 0 auto;
	}

.cta-section-services h2 {
   font-size: 44px;
    margin-bottom     :    25px;

}

.cta-section-services p {
	font-size: 18px;
      margin-bottom: 40px;
       opacity: 0.95;

}

.thankyou-section 
 {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: calc(100vh - 400px);
  display :   flex;
    align-items: center;
}

.thankyou-container {
   max-width: 800px;
      margin: 0 auto;
       background: #ffffff;
     padding: 60px;
    border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
       text-align: center;
}

.thankyou-icon
{
   width: 100px;
     height: 100px;
      margin :    0 auto 30px;
       color   :     #2ecc71;
      display: flex;
     align-items: center;
      justify-content  :    center; 

}

.thankyou-icon svg {
	 width: 100%;
  height: 100%;
}

.thankyou-container h1 {
    font-size: 42px;
    color: #2c3e50;
  margin-bottom: 20px;
   font-weight: 700;
}

.thankyou-message {

	  font-size: 18px;
    color: #666;
   line-height     :    1.8;
	margin-bottom: 50px;
     }

.thankyou-details {
  margin: 60px 0;
   text-align: left;
}

.thankyou-details h2 {
                    font-size  :     28px;
   color: #2c3e50;
   margin-bottom: 40px;
        text-align: center;
}

.details-list

{
    display: flex;
	flex-direction: column;
  gap: 30px;
}

.detail-step {
   display: flex;
    gap: 25px;
  align-items: flex-start;
}

.step-number {
	width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
   border-radius: 50%;
    display: flex;
  align-items     :    center;
	justify-content: center;
  font-weight: 700;
    font-size: 20px;
     flex-shrink: 0;
}

.step-content h3 {
	   font-size: 18px;
  color: #2c3e50;
	margin-bottom: 8px;
	font-weight: 600;}

.step-content p {
                    line-height: 1.6;
          font-size:    15px;
   color: #666;
}

.thankyou-additional

{
   background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
    margin: 50px 0;
}

.thankyou-additional h2{
   font-size: 24px;
    color: #2c3e50;
                    margin-bottom: 15px;
}

.thankyou-additional p {
    color: #666;
    font-size: 15px;
  margin-bottom: 25px;
}

.additional-links{
   display: flex;
    gap: 20px;
    justify-content   :      center;
               flex-wrap   :      wrap;
	
}

.link-button    {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 12px 30px;
   border-radius: 25px;
  text-decoration: none;
        font-weight: 600;
    font-size    :14px;
   transition     :  all 0.3s ease;
}

.link-button:hover 
 {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.thankyou-contact-info {
  border-top: 2px solid #e0e0e0;
    padding-top: 40px;
   margin-top: 40px;
}

.thankyou-contact-info h3 {
  font-size: 20px;
	 color:#2c3e50;
   margin-bottom: 15px; 

}

.thankyou-contact-info p {
  margin-bottom: 10px; 
		font-size: 15px; 
	 color: #666;
}

.contact-phone  
  {
   font-weight: 700;
               color: #667eea;
   font-size: 16px;
   margin-top: 15px;
}

.contact-hours {
   color     :       #999;
   font-size: 13px;
}@media (max-width: 968px) {
    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-detailed-item.service-reversed {
        direction: ltr;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.5fr repeat(4, 1fr);
    }

    .table-col {
        padding: 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 32px;
    }

    .services-hero-subtitle {
        font-size: 16px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 15px;
    }

    .service-pricing {
        flex-wrap: wrap;
    }

    .price {
        font-size: 28px;
    }

    .comparison-section {
        padding: 60px 20px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .table-col,
    .table-row .table-col {
        padding: 12px;
    }

    .thankyou-container {
        padding: 40px 30px;
    }

    .thankyou-container h1 {
        font-size: 32px;
    }

    .thankyou-message {
        font-size: 16px;
    }

    .detail-step {
        gap: 15px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 50px 20px;
    }

    .services-hero-content h1 {
        font-size: 24px;
    }

    .services-detailed {
        padding: 60px 20px;
    }

    .services-detailed-container h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 14px;
    }

    .service-details-list {
        margin: 20px 0;
    }

    .detail-item {
        font-size: 13px;
    }

    .price {
        font-size: 24px;
    }

    .comparison-container h2 {
        font-size: 28px;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.2fr repeat(4, 0.8fr);
    }

    .table-col {
        padding: 10px;
        font-size: 11px;
    }

    .faq-container h2 {
        font-size: 28px;
    }

    .cta-section-services h2 {
        font-size: 32px;
    }

    .cta-section-services p {
        font-size: 16px;
    }

    .thankyou-section {
        padding: 40px 15px;
    }

    .thankyou-container {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .thankyou-container h1 {
        font-size: 26px;
    }

    .thankyou-message {
        font-size: 14px;
    }

    .thankyou-details {
        margin: 30px 0;
    }

    .thankyou-details h2 {
        font-size: 22px;
    }

    .detail-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .additional-links {
        flex-direction: column;
    }

    .link-button {
        width: 100%;
        text-align: center;
    }

    .thankyou-contact-info h3 {
        font-size: 18px;
    }

    .thankyou-contact-info p {
        font-size: 14px;
    }
}.policySection {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 400px);
}

.policyContainer
	{
    max-width: 850px;
  margin: 0 auto;
        text-align: left;
	background: #ffffff;
   padding: 60px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.08);
}

.policyContainer h1 {
     font-size: 2.8rem;
		 color: #667eea;
   margin-bottom: 2.5rem;
    font-weight: 700;
    line-height: 1.2;


}

.policyContainer h2 {
   font-size     :    1.8rem;
  color: #2c3e50;
    margin-top: 2rem;
   margin-bottom: 1.2rem;
   font-weight: 700;
	border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.policyContainer h2:first-of-type {
    margin-top: 0;
}

.policyContainer p {

  color: #555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
	font-size    :        1rem;
   text-align: justify;
	}

.policyContainer p strong {
      font-weight: 700;
   color: #2c3e50;}

.policyContainer p:last-child {
  margin-bottom: 0;
}@media (max-width: 968px) {
    .policyContainer {
        padding: 50px 40px;
        margin: 0 20px;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-top: 1.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 40px 30px;
        margin: 0 10px;
        border-radius: 12px;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 30px 20px;
        margin: 0 10px;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.05);
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: #2c3e50;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
        text-align: left;
    }
}

@media (max-width: 360px) {
    .policyContainer {
        padding: 25px 15px;
    }

    .policyContainer h1 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
        margin-bottom: 0.9rem;
    }
}