* {
  margin: 0;
  padding    :        0;
                    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
	
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
   background-color    :        #ffffff;
}

a 
 {
   text-decoration: none;
   color: inherit;
}

img {
   max-width: 100%; 
	    height: auto; 
		 display: block;
}

h1, h2, h3, h4 {
  margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {


    font-size: 3.5rem; 
	                    color: #1a252f; 
	 font-weight: 700;}

h2 {
       font-size : 2.5rem;
   color: #1a252f;
   font-weight :       700;
	}

h3 {
  font-size: 1.5rem;
   color: #2c3e50;
   font-weight: 600; 
	
} 

h4 {
    font-size: 1.2rem;
  font-weight: 600;
  color: #34495e;

}

.header-main {
    position: sticky;
   	 top: 0;
     z-index  :1000;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     box-shadow: 0 2px 15px rgba(102, 126, 234, 0.15);
}

.header-wrapper {
       display: flex;

	  justify-content    :   space-between;

	  align-items   :      center;

	   max-width: 1200px;

	   margin: 0 auto;

	    padding: 1rem 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
}

.site-logo {
    height: 50px;
         width: auto;
  filter: brightness(0) invert(1);
}

.navigation-primary {


   flex: 1;
    display: flex;
	justify-content: center;

}

.nav-list {
    list-style: none;
  gap: 2.5rem;
  display: flex;
}

.nav-link

{
    color: #ffffff;
       font-weight: 500;
       font-size: 1rem;
     transition: all 0.3s ease;
      position: relative;
}

.nav-link:hover {

	         color: #fff9e6;

}

.nav-link::after {
    position: absolute;
    background: #fff9e6;
   left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
  content: '';
   width :     0;
    height: 2px;
}

.nav-link:hover::after     {
   width: 100%;
}

.burger-toggle{
   display: none;
	flex-direction: column;
    background: none;
  border: none;
   cursor :      pointer;
  gap    :  5px;
}

.burger-line {
    width    :      25px;
	 height: 3px;
		 background: #ffffff;
  border-radius: 2px;
   transition: all 0.3s ease;
}

.mobile-menu {
   display: none;
  background: #667eea;
	 padding: 1.5rem 2rem;
    position: absolute;
  width: 100%;
    top: 70px;
   list-style: none;
}

.mobile-menu.active {
  animation: slideDown 0.3s ease-out;
  display  :  block;
}@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.mobile-nav-list {

    list-style  :none;
               display: flex;
    flex-direction     :   column;
	gap: 1rem;

}

.mobile-nav-link {
					color  :    #ffffff;
    font-weight: 500;
  display: block;
   padding   :   0.75rem 0;
   transition: all 0.3s ease;
}  

.mobile-nav-link:hover {
  color: #fff9e6;
      padding-left: 1rem;
}
/* Browser compatibility */

/* Minified version */



/* Temporary fix */


.hero-section {
  align-items : center;
    margin: 0 auto;
    gap: 3rem;
  display: grid;
	max-width: 1200px;
   padding     :       4rem 2rem;
   grid-template-columns: 1fr 1fr;
}

.hero-content {


    z-index   :2;
}
	/* Cross-browser fix */

	/* Build system output */
.hero-title {

	   margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;

}

.hero-subtitle {
  font-size: 1.2rem;
    color: #555;
   margin-bottom: 2rem;
    line-height: 1.8;
	}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  border-radius: 50px;
                    font-weight: 600;
    font-size: 1rem;
  transition   :      all 0.3s ease;
    border: 2px solid transparent;
   cursor: pointer;
  text-align: center;
}


.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hero-button {
  display: inline-block;
}

.hero-image {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
                    width: 100%;
 height: auto;
}

.services-intro     {
	  max-width: 1200px;
   margin     :    0 auto;
    padding: 4rem 2rem;

}
/* Cross-browser fix */



.services-header {
    text-align     :   center;
  margin-bottom: 3rem;
}
	/* Minified version */


	/* Temporary fix */
.services-header h2 {
      margin-bottom: 1rem;
}

.services-header p {
      font-size :    1.2rem;
    color: #666;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
	 margin-top: 2rem;
}

/* Colors and backgrounds */


.service-card {
   background: #f8f9fa;
  border-radius   :    15px;
   overflow   :    hidden;
	 transition    :  all 0.3s ease;
    border: 1px solid #e8ecf1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
	
}

.service-image {
   width    :  100%;
   height     :   200px;
    object-fit: cover;
}
	/* Layout styles */

/* TODO: optimize for mobile */
.service-card h3 {
  color: #667eea;
	 padding:        1.5rem 1.5rem 0.5rem;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
    color :     #555;
  font-size: 0.95rem;
	 line-height: 1.7;
}

.benefits-section


{
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
  padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
               border-radius: 20px;
  margin    :3rem 2rem;
}

.benefits-section h2

{
    text-align: center;
	margin-bottom: 3rem;
}

.benefits-container
	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.benefit-item {
   background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
		border-left: 4px solid #667eea;
	transition: all 0.3s ease;
} 

.benefit-item:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}
	/* Auto-generated CSS */
/* Auto-generated CSS */
/* Development only */

.benefit-item h3 {
      color: #667eea;
  margin-bottom: 1rem;

     }
/* NOTE: keep for legacy support */


/* Vendor-specific */

	/* Third-party styles */


.benefit-item p {
       color: #666;
    font-size: 0.95rem;
   line-height    :       1.7;}

.cta-section  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
   padding: 4rem 2rem;
      text-align  :   center;
                    margin: 3rem 0;
}

.cta-container {
   max-width: 800px;
    margin: 0 auto;
}


.cta-container h2 {
   color: #ffffff;
    margin-bottom: 1rem;
}

.cta-container p {
   font-size     :      1.1rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}

.primary-button {
  border: 2px solid #ffffff;
    background :     #ffffff;
  color: #667eea;
}

.primary-button:hover {
  background: transparent; 
   color: #ffffff;
}
/* NOTE: keep for legacy support */
/* Production ready */


/* Animation and transitions */

.contact-section {
    max-width: 900px;
   margin: 0 auto;
   padding     :        4rem 2rem;
}

.contact-wrapper {
  background: #f8f9fa;
	padding: 3rem;
 border-radius: 20px;
    border: 1px solid #e8ecf1;
}

.contact-wrapper h2 {

	     text-align: center;
   margin-bottom: 1rem;
	color: #667eea;
	

}
	/* Colors and backgrounds */



/* Browser compatibility */

.contact-intro {
    text-align: center;
    color: #666;
  margin-bottom: 2rem;
	font-size: 1.05rem;
}

.contact-form	{
     display: grid;
   gap: 1.5rem;

}

.form-group {
	display: flex;
   flex-direction: column;
}

.form-group label {
       margin-bottom: 0.5rem;
   color     : #2c3e50;
   font-weight: 600;
    font-size:        0.95rem;

}

.form-group input,
.form-group select,
.form-group textarea	{
      padding  :    0.875rem 1rem;
  border :      2px solid #e8ecf1;
   border-radius: 8px;
  font-family    :        inherit;
    font-size: 1rem;
   transition: all 0.3s ease;
    background: #ffffff;
     color: #2c3e50;}

.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 {
	 resize: vertical;
  min-height  :   120px;
}

.submit-button {
    padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
   border: none;
  border-radius: 8px;
   font-size: 1rem;
  font-weight: 600;
               cursor: pointer;
  transition     :   all 0.3s ease;
  margin-top: 1rem;
}

/* Performance critical */

.submit-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
	}

.footer-main {
    background: #1a252f;
  color: #ffffff;
   padding: 3rem 2rem 1rem;
       margin-top: 4rem;
}

.footer-content {

  max-width: 1200px;
  margin  :  0 auto;
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
    margin-bottom     :  2rem;
}

.footer-brand {


    display: flex;
    align-items   :  flex-start;}

.footer-logo {

	   height: 45px;
    width: auto;
  filter: brightness(0) invert(1);

}

.footer-section h4 {
    color: #667eea;
   margin-bottom: 1.5rem;
}
/* Cross-browser fix */

.footer-links {
	 list-style    :       none;
	  display: flex;
	   flex-direction: column;
	   gap: 0.75rem;
}

.footer-links a {
    color: #a0aec0;
   transition: all 0.3s ease;
    font-size: 0.95rem;

}

.footer-links a:hover {
       color: #667eea;
    padding-left: 0.5rem;
}

.footer-address {

	  color: #a0aec0;
    font-size  :      0.95rem;
               line-height: 1.8;
  margin-bottom: 1rem;}

.footer-phone {


   color: #667eea;
   font-weight: 600;
    margin-bottom: 1rem;

}

/* Colors and backgrounds */



/* Browser compatibility */


.footer-section p {

	    color: #a0aec0;
   font-size: 0.9rem;
    line-height: 1.7; 

     }

.footer-bottom  
  {
   max-width: 1200px;
                    margin: 0 auto;
   padding-top: 2rem;
  border-top: 1px solid #2d3e50;
    text-align: center;
  color   :      #666;
	font-size   :        0.9rem;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .header-wrapper {
        padding: 1rem;
    }

    .burger-toggle {
        display: flex;
    }

    .navigation-primary {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .contact-wrapper {
        padding: 2rem;
    }

    .cta-button {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .header-wrapper {
        padding: 0.75rem;
    }

    .services-intro {
        padding: 2rem 1rem;
    }

    .benefits-section {
        margin: 2rem 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .footer-main {
        padding: 2rem 1rem 0.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}.services-hero {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 70px;

}

.services-hero-content {
  max-width  :       800px;
   margin: 0 auto;
}

.services-hero-content h1
{
 color :  #ffffff;
      margin-bottom     :       1.5rem;
  font-size: 2.8rem;
}

.services-hero-content p {
    font-size     :   1.1rem;
    opacity: 0.95;
  line-height: 1.8;
}  

.services-detailed {
    max-width: 1200px;
               margin: 0 auto;
         padding:        4rem 2rem;
}

.services-container {
	display: flex;
  flex-direction: column;
   gap: 3rem;
}

.service-detailed-card {
        display: grid;
   grid-template-columns: 1fr 1fr;
	 gap: 2rem;
   align-items: center;
  background     :  #f8f9fa;
 border-radius: 15px;
    overflow:        hidden;
   border  :      1px solid #e8ecf1;
  transition: all 0.3s ease;
}


.service-detailed-card:hover
{
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
   border-color  :   #667eea;
}

.service-detailed-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detailed-card:nth-child(even) > * {
   direction: ltr; 
	
}

.service-detail-image {
   height: 100%;
	 min-height: 350px;
    overflow: hidden;
}

.detail-img {
    width: 100%;
      height: 100%;
   object-fit: cover;
}

.service-detail-content {
  padding: 2.5rem;
}

.service-detail-content h2 {
    color: #667eea;
  margin-bottom: 1rem;
 font-size: 2rem;
}



.service-intro {
   font-size: 1.05rem;
   color: #555;
   margin-bottom: 1.5rem;
                    line-height: 1.7;
}

.service-detail-content h3 {
 color :#2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-list  
  {
   list-style   : none;
  margin-bottom: 1rem;
}



.service-list li {
      padding: 0.5rem 0 0.5rem 1.5rem;

		position    :   relative;

	  color: #555;

	   line-height: 1.6;
}

.service-list li::before {
  content: '✓';
                    position: absolute;
	left: 0;
  color: #667eea;
  font-weight: bold;
}

.service-detail-content p {
   color: #666;
  line-height   :1.7;
    margin-bottom: 1rem;
    font-size:   0.95rem;
} 

.service-price {
   display: inline-block; 
	   margin-top :  1.5rem; 
	 padding: 0.75rem 1.5rem; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	  color: #ffffff; 
	  border-radius: 25px; 
	     font-weight: 600; 
	   font-size: 1.1rem;
}

.pricing-summary {
 background   :   #f8f9fa;
   margin: 3rem 0;
  padding   :     4rem 2rem;
}

.pricing-summary h2 {
          text-align: center;
  margin-bottom: 2.5rem;
   color: #1a252f;
}

.pricing-table-wrapper {
	 max-width: 1000px;
   margin: 0 auto;
               overflow-x: auto;

}

.pricing-table 
 {
   width: 100%;
  border-collapse: collapse;
    background: #ffffff;
  border-radius :12px;
	 overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pricing-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
}

.pricing-table th {
   padding    :1.25rem;
  text-align: left;
          font-weight: 600;
    font-size: 0.95rem;
}

.pricing-table td {

	     padding: 1.25rem;
   border-bottom: 1px solid #e8ecf1;
   color: #555;
  font-size: 0.95rem;
	}

.pricing-table tbody tr:last-child td


{
    border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: #f5f7ff;
}

.faq-services {
      max-width: 900px;
    margin: 0 auto;
        padding  : 4rem 2rem;
}

.faq-services h2 {
  text-align: center;
    margin-bottom: 2.5rem;
	 color: #1a252f;


}

.faq-container {
   display: grid;

   gap: 1.5rem;
}

.faq-item  {


	background: #ffffff;
    padding: 1.75rem;
   border-radius: 12px;
   border-left: 4px solid #667eea;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);


}

.faq-item:hover     {
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.12);
  transform: translateX(5px); 

}

.faq-item h3 {
         color  :  #667eea;
    margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.faq-item p
{

	   color: #666;
    line-height  :  1.7;
		font-size: 0.95rem;}

.cta-services	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  padding: 4rem 2rem;
    text-align: center;
  margin:3rem 0;
}

.cta-services h2


{
      margin-bottom: 1rem;
   color: #ffffff;
	

}

.cta-services p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
   margin-right: auto;
	
}

.service-cta-button {


   background: #ffffff;
  color: #667eea;

}

.service-cta-button:hover {
    background: transparent; 
    color: #ffffff; 
   border-color: #ffffff;
}

.thankyou-section {
    max-width: 900px;
    margin   :  0 auto;
   padding: 4rem 2rem;
  min-height: calc(100vh - 200px);
   display: flex;
    align-items:        center;
   justify-content   :       center;
}

.thankyou-container {
    text-align: center;
   width: 100%;
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.success-icon    {
  width: 100px;
   height: 100px;
  filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
   animation   :      scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title {
   color: #667eea;
    font-size: 2.5rem;
   margin-bottom: 0.5rem;
}

.thankyou-message {
     font-size   :  1.3rem;
  color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thankyou-description {
    font-size: 1rem;
    color: #666;
   line-height: 1.7;
   margin-bottom: 2.5rem;
  max-width: 700px;
    margin-left: auto;
   margin-right     :  auto;
}

.thankyou-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
  margin: 3rem 0;
}

.next-steps {
  text-align  :       left;
    background: #f8f9fa;
    padding: 2rem;
	 border-radius: 12px;
   border: 1px solid #e8ecf1;
}

.next-steps h2 {
  text-align: left;

    color: #1a252f;

    margin-bottom: 1.5rem;

  font-size: 1.5rem;
}

.steps-list 
 {
   list-style: none;
    display: flex;
    flex-direction: column;
   gap: 1.5rem;
}

.steps-list li {
  display: flex;
  gap: 1.5rem;
   align-items: flex-start;


}



.step-number {
    display: flex;

	  align-items:  center;

	   justify-content   :        center;

	   width     :      40px;

	   height: 40px;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	    color: #ffffff;

	    border-radius: 50%;

	  font-weight: 700;

	         font-size: 1.1rem;

	    flex-shrink: 0;
     }

.step-content h3 {
	color: #2c3e50;
    font-size   :1rem;
  margin-bottom: 0.5rem;
}

.step-content p		{
    color: #666;
	font-size: 0.9rem;
   line-height: 1.6;
}

.quick-info {
    text-align: left;

}

.quick-info h2 {

  text-align: left;
   color    :      #1a252f;
  margin-bottom: 1.5rem;
          font-size: 1.5rem; 

     }

.info-box   {
     transition: all 0.3s ease;
   background: #ffffff;
	padding: 1.5rem;
   border-radius:     12px;
  margin-bottom: 1rem;
   border:  2px solid #e8ecf1;
}

.info-box:hover {
               border-color: #667eea;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.info-box h3 {
   color :      #667eea;
   margin-bottom: 0.5rem;
        font-size: 1rem;
}

.info-box p {
   color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.action-buttons     {
   display: flex;
   gap: 1rem;
   justify-content :center;
	 margin-top: 2.5rem;
   flex-wrap: wrap;
}

.button-primary {
   display: inline-block;
    padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
    border-radius: 50px;
	font-weight: 600;
   transition: all 0.3s ease;
   text-align: center;
					text-decoration: none;
         border: 2px solid transparent;
}

.button-primary:hover		{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); 
	
}

.button-secondary {


  display: inline-block;
  padding: 0.9rem 2rem;
    background: #ffffff;
  color     :  #667eea;
    border: 2px solid #667eea;
	 border-radius: 50px;
    font-weight: 600;
  transition: all 0.3s ease;
    text-align    :       center;
  text-decoration: none;
	}

.button-secondary:hover {
      background: #667eea;
    color: #ffffff;

}

.testimonials-preview {
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
    padding: 4rem 2rem;
   margin: 3rem 0;
}



.testimonials-preview h2 {
  text-align: center;
    margin-bottom: 2.5rem;
      color: #1a252f; 

}

.testimonials-grid {
	  display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
  padding    :      2rem;
	border-radius: 12px;
   border-left: 4px solid #667eea;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
}

.testimonial-text

{
  color: #555;
      font-size: 0.95rem;
	 line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
   color     :        #667eea;
       font-weight: 600;
   font-size: 0.9rem;
}@media (max-width: 1024px) {
    .service-detailed-card {
        grid-template-columns: 1fr;
    }

    .service-detailed-card:nth-child(even) {
        direction: ltr;
    }

    .service-detail-image {
        min-height: 250px;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-content {
        padding: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .steps-list li {
        gap: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .cta-services {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-detailed {
        padding: 2rem 1rem;
    }

    .service-detail-content {
        padding: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.2rem;
    }

    .service-detail-content h3 {
        font-size: 1rem;
    }

    .pricing-table {
        font-size: 0.8rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem;
    }

    .thankyou-section {
        padding: 2rem 1rem;
    }

    .thankyou-icon {
        margin-bottom: 1.5rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .thankyou-title {
        font-size: 1.5rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }

    .next-steps,
    .quick-info {
        background: #f8f9fa;
        padding: 1.25rem;
    }

    .info-box {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .step-content h3 {
        font-size: 0.9rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.policy-section  
  {
	padding: 80px 2rem;
	background: #f8f9fa;
  min-height: calc(100vh - 200px);
   margin-top   :     70px;
}

.policy-container {
    max-width: 800px;
    margin    :      0 auto;
   text-align: left;
  background: #ffffff;
  padding: 3rem;
   border-radius:      15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
      color: #667eea;
   font-size: 2.8rem;
    margin-bottom: 2rem;
   border-bottom: 3px solid #667eea;
    padding-bottom: 1rem;

}

.policy-container h2 {
	  color: #2c3e50;
	font-size: 1.6rem;
   margin-top    :       2rem;
   margin-bottom: 1rem;
   font-weight: 700;

}

.policy-container h2:first-of-type {
    margin-top: 0;
}

.policy-container p  
  {

  color     :      #555;
    margin-bottom: 1.2rem;
  line-height     :    1.8;
    font-size    :1rem;
	}

.policy-container p strong {
   color: #667eea;
       font-weight: 600;
}

.policy-container ul  {
 margin-bottom: 1.2rem;
  margin-left: 1.5rem;
}

.policy-container li {
    line-height: 1.7;
	 color: #555;
   margin-bottom: 0.8rem;
}

.policy-container a {
  color: #667eea; 
	    transition: all 0.3s ease; 
	    text-decoration: underline;
}

.policy-container a:hover {

   color  :       #764ba2;
     }@media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-container h1 {
        font-size: 2.3rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1.5rem;
    }

    .policy-container {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.6rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}