* {
	 margin: 0;
     padding: 0;
   box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height    : 1.6;
   color: #2c3e50;
    background-color: #f8f9fa;
}

.navigation-bar {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding     :  1rem 0;
   position     :sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);


}

.nav-container {
          max-width: 1200px;

	    margin: 0 auto;

	  padding: 0 2rem;

	   display: flex;

	   justify-content: space-between;

	    align-items: center;
}  

.logo-section {
       flex-shrink: 0;
}

.logo-img	{
     height     :   50px;

	    width: auto;

	  filter: brightness(0) invert(1);
	
}

.burger-menu		{
    display: none;
    flex-direction: column;
    background: none;
      border: none;
   cursor: pointer;
   gap: 5px;
}

.burger-line     {


   width     :   25px;
  height: 3px;
  background-color    :      white;
  transition :        all 0.3s ease;
  border-radius: 2px;}

.nav-menu {
   display: flex;
  list-style: none;
    gap:    2rem;
}

.nav-link {
    color: white;
   text-decoration: none;
   font-weight: 500;
   transition: opacity 0.3s ease;
   font-size: 1rem; 
	
}

.nav-link:hover
	{
   opacity: 0.8;
}

.hero-section {
  display     :    grid;
   grid-template-columns: 1fr 1fr;
	gap  :      3rem;
  align-items: center;
   max-width: 1200px;
   margin: 0 auto;
	 padding: 4rem 2rem;
}

.hero-content h1 {
   	 font-size: 3.5rem;
	margin-bottom: 1.5rem;
    color :    #1a1a2e;
  line-height: 1.2;
}

.hero-subtitle {
          font-size: 1.2rem;
    color   :   #555;
   margin-bottom: 2rem;
    line-height: 1.8;


}

.cta-button    {
  display: inline-block;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

   color: white;

   padding: 1rem 2.5rem;

   border-radius: 50px;

  text-decoration: none;

	font-weight     :     600;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);


}

.cta-button:hover		{
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.hero-image img {
   width: 100%;
               height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-section	{
     background: white;
    padding: 4rem 2rem;
   margin: 2rem 0;

}

.intro-container {
  max-width: 1200px;
         margin: 0 auto;

}

.intro-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.intro-container > p {
                    font-size: 1.1rem;
		 color: #555;
                    margin-bottom: 3rem;
    line-height:  1.8;
} 

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}



.benefit-card {
   background: #f0f4ff;
	 padding: 2rem;
	border-radius: 12px;
	 border-left: 4px solid #667eea;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
	  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);

}

.benefit-card h3  {

    font-size: 1.3rem;
      margin-bottom: 0.8rem;
   color : #667eea;
     }

.benefit-card p {
  color: #555; 
	  line-height   :   1.6;
}

.services-overview  {
   padding: 4rem 2rem; 
   background :       white;
}

.services-container {
    max-width: 1200px; 
      margin: 0 auto;
}

.services-container h2 {
      font-size: 2.5rem;
  margin-bottom: 3rem;
    text-align: center;
	color :     #1a1a2e;
}

.services-grid {
         display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}  

.service-item {
    background: #f8f9fa;
  border-radius: 12px;
   overflow    :  hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-item:hover {
	  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

}

.service-item img {
  object-fit: cover;
    width: 100%;
   height: 200px;
}

.service-item h3 {
  font-size: 1.4rem;
     padding: 1.5rem 1.5rem 0.5rem;
    color: #1a1a2e;
}

.service-item p {
        padding: 0 1.5rem 1.5rem;

	   color: #555;

	    line-height: 1.6;

	  font-size :      0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 3rem 2rem;
  margin: 2rem 0;
}

.cta-wrapper		{
	max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cta-wrapper h2 {
          font-size: 2.2rem;
  margin-bottom: 1rem; 
	
}

.cta-wrapper p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-primary {
  display: inline-block;
    background: white;
    color: #667eea;
	padding: 1rem 3rem;
   border-radius: 50px;
	text-decoration: none;
    font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
  transform: translateY(-3px);
	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonials-section


{
	padding: 4rem 2rem;
	background: white;
	
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto; 

}

.testimonials-container h2 {
    font-size: 2.5rem;
	text-align: center;
   color     :       #1a1a2e;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {

	   background: #f0f4ff;
    padding: 2rem;
   border-radius: 12px;
          border: 2px solid #e0e7ff;
    font-style: italic;
                    color: #555;
   transition: transform 0.3s ease;
	


}

.testimonial-card:hover {
  transform: translateY(-5px);
    border-color: #667eea;
}

.testimonial-card p:first-child {
	 margin-bottom:    1rem;
	line-height    :     1.8;

}

.testimonial-author {
   font-style    :   normal;
   font-weight: 600;
   color: #667eea;
  font-size: 0.95rem;
}

.contact-section {
  padding: 4rem 2rem;
  background: white;
}



.contact-container {
  max-width     :   600px;
    margin: 0 auto;
}

.contact-container h2 {
   font-size: 2.2rem;
  margin-bottom: 1rem;
   text-align: center;
     color: #1a1a2e;
}

.contact-intro

{
      text-align: center;
          color: #555;
   margin-bottom: 2rem;
   font-size: 1.05rem;


}

.contact-form
	{
	display: flex;
 flex-direction: column;
    gap: 1.5rem;
}

.form-group {
  display: flex;
       flex-direction: column;
}

.form-group label {

	  font-weight: 600;
      margin-bottom: 0.5rem;
      color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
	       padding: 0.75rem;
	 border: 2px solid #e0e7ff;
    border-radius: 8px;
   font-size   : 1rem;
	font-family: inherit;
   transition: border-color 0.3s ease;
}

.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);
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color: white;
	   padding: 1rem;
	 border: none;
	    border-radius: 8px;
		font-weight: 600;
	   font-size: 1rem;
	   cursor: pointer;
		transition   :     transform 0.3s ease, box-shadow 0.3s ease;
	  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.footer-section {
   background :   #1a1a2e;
  color  :white;
    padding: 3rem 2rem;
}

.footer-container {
     max-width   :        1200px;
   margin: 0 auto;
}

.footer-content {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 3rem;
    margin-bottom   :   2rem;
}

.footer-logo-block img {
               height: 60px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-address h3,
.footer-contact h3,
.footer-links h3 {
    font-size: 1.1rem;
   margin-bottom: 1rem;
   color: #667eea;
}

.footer-address p,
.footer-contact p {
   line-height: 1.8;
   color: #ccc;
}

.footer-links ul
{
  list-style: none;
}

.footer-links ul li {
   margin-bottom: 0.5rem;
}

.footer-links a {
        color: #ccc;
    text-decoration:      none;
   transition: color 0.3s ease;
}

.footer-links a:hover {

	    color:#667eea; 
	
     }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
    border-top: 1px solid #333;
  color: #999;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .intro-container h2,
    .services-container h2,
    .testimonials-container h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
    }

    .intro-section,
    .services-overview,
    .testimonials-section,
    .contact-section {
        padding: 2rem 1rem;
    }

    .service-item img {
        height: 150px;
    }
}.services-hero {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding :      4rem 2rem;
   text-align: center;
   color: white;
	}

.services-hero-content h1 {
   font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
  font-size: 1.3rem;
   opacity: 0.95;
}

.services-section
	{
    padding: 3rem 2rem;
   background: #f8f9fa;
}

.services-main-container {

	  max-width: 1100px;
   margin: 0 auto;


}


.service-detailed {
  background: white;
	border-radius  :12px;
	margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   overflow: hidden;
    transition: box-shadow 0.3s ease; 
	
}

.service-detailed:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-detail-grid {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  align-items: start;
}

.service-detail-image {
    overflow: hidden;
    border-radius :      12px;
}

.service-detail-image img {
   width: 100%;
   height: auto;
	display: block;
}

.service-detail-content {

        padding    :     2rem;


}

.service-detail-content h2 {
   font-size: 2.2rem;
  color: #1a1a2e;
   margin-bottom: 0.8rem;
}

.service-lead {
    font-size: 1.1rem;
   color: #667eea;
   font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-detail-content > p {
	   color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
     }

.service-subheading {
    font-size:     1.3rem;
  color: #1a1a2e;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.service-features {
  list-style: none;
    margin-bottom: 1.5rem;
}  

.service-features li {
  padding    :  0.6rem 0;
   padding-left: 1.8rem;
          position: relative;
	color: #555;
   line-height: 1.6;
}

.service-features li:before {
  content: "✓";
   position: absolute;
  left :       0;
  color: #667eea;
  font-weight: bold;
   font-size: 1.1rem;
}

.service-price-block   {
   background: #f0f4ff;

    border-left: 4px solid #667eea;

  padding     :        1.5rem;

          margin-top:  2rem;

    border-radius: 8px;
}

.service-price-label {
  font-size: 0.9rem;

	  color: #888;

	  text-transform: uppercase;

	   letter-spacing: 1px;

	  margin-bottom: 0.5rem;
	}

.service-price {
  font-size: 2rem;
   color: #667eea;
	font-weight     :  700;
    margin   :    0;
}

.service-price-note {
	font-size: 0.85rem;
   	 color: #888;
       margin: 0.3rem 0 0 0;
}

.comparison-section		{
    padding: 4rem 2rem;
  background: white;}

.comparison-container {
    max-width    : 1100px;
    margin: 0 auto; 

}

.comparison-container h2 {
 font-size: 2.5rem;
   margin-bottom: 2rem;
	text-align: center;
   color: #1a1a2e;
}

.comparison-table-wrapper

{
  overflow-x    :auto;
}

.comparison-table{
	width: 100%;
  border-collapse     :        collapse;
    background: white;
}

.comparison-table thead   {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color : white;
} 

.comparison-table th	{
   	 padding:    1.2rem;
  text-align: left;
         font-weight: 600;


}

.comparison-table td {
    padding: 1rem 1.2rem;
   border-bottom: 1px solid #e0e7ff;
}


.comparison-table tbody tr:hover {
   background  :    #f9fbff;
}

.table-label {
	 font-weight   : 600;
    color: #1a1a2e;
	background: #f0f4ff; 

}

.table-yes {
    color: #27ae60;
  font-weight: 600;
}

.table-no {
          color: #e74c3c;
}


.table-partial{
  color: #f39c12;
    font-weight: 600;
}

.table-value {
    color   : #555;

}

.faq-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.faq-container {
   margin: 0 auto;
    max-width: 900px;
}

.faq-container h2 {
	font-size :       2.5rem;
               margin-bottom: 2rem;
       text-align: center;
   color: #1a1a2e;
}

.faq-list   {
	 display: flex;
  flex-direction: column;
   gap: 1rem;
}

.faq-item {
	background :     white;
    border-radius: 8px;
  overflow    :       hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
	 padding: 1.5rem;
   background: white;
   border :    none;
   border-left: 4px solid #e0e7ff;
      cursor:   pointer;
    display   :        flex;
  justify-content  :  space-between;
  align-items: center;
  font-size: 1.05rem;
    font-weight: 600;
  color: #1a1a2e;
      transition: all 0.3s ease;
}

.faq-question:hover     {
     border-left-color: #667eea;
   background: #f9fbff;
}

.faq-toggle {
  font-size: 1.5rem;
   color     :       #667eea;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {


  max-height: 0;
  overflow: hidden;
   transition: max-height 0.3s ease;
     }

.faq-item.active .faq-answer {

	    max-height: 500px;}

.faq-answer p {
   	padding: 1.5rem;
  color: #555;
  line-height: 1.8;
          background    : #f9fbff;
}

.cta-final-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3.5rem 2rem;
   text-align: center;
}

.cta-final-wrapper {
    max-width: 800px;
  margin: 0 auto;
    color: white;
}

.cta-final-wrapper h2 {
   font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final-wrapper p {
  font-size    :   1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-final {
  display    :        inline-block;
  background:      white;
  color: #667eea;
       padding: 1rem 3rem;
    border-radius: 50px;
	text-decoration: none;
    font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.thankyou-section {
          padding: 5rem 2rem;
	background    :      white;
    min-height: 70vh; 
	
}

.thankyou-container {
          max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-icon{

    margin-bottom: 2rem;}

.thankyou-icon svg {
    -moz-animation: scaleIn 0.5s ease-out;
   width: 120px;
    animation: scaleIn 0.5s ease-out;
     height:   120px;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
  font-size: 2.8rem;
    color:      #667eea;
                    margin-bottom: 1rem;
}

.thankyou-main-text {

    font-size: 1.1rem;
  color: #555;
   line-height :  1.8;
  margin-bottom: 2.5rem;


}


.thankyou-info-block {
  background: #f0f4ff;
  padding :     2rem;
	border-radius: 12px;
        margin-bottom: 2.5rem;
  text-align: left;
}

.thankyou-info-block h2

{


   font-size: 1.5rem;
   color: #1a1a2e;
  margin-bottom: 1.5rem;
   text-align: center;
     }

.thankyou-steps {


  list-style: none;
	
}

.thankyou-steps li {
    display: flex;
   gap: 1rem;
	margin-bottom: 1.5rem;
  align-items: flex-start;
}
/* Framework override */


.thankyou-steps li:last-child {
   margin-bottom: 0;
}
	/* Animation and transitions */


	/* State modifiers */

.step-number {
  width     :  40px;
	 height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
  font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
                    font-size: 1.05rem;
          color: #1a1a2e;
  margin-bottom: 0.3rem;
}

.step-content p
	{
  margin  :       0;

  font-size: 0.95rem;

   color: #666;
}

.thankyou-contacts {
    background: #fff8e6;
			padding: 2rem;
        border-radius: 12px;
    margin-bottom: 2rem;
}

.thankyou-contacts h2 {
  font-size: 1.3rem;

	    color: #1a1a2e;

	  margin-bottom: 0.8rem;
}

.thankyou-contacts p {
   color: #555;
   margin-bottom: 0.5rem;
}

.contact-phone {
   font-weight: 600;
     font-size: 1.1rem;
  color   :#667eea;

}

.contact-timing {
   font-size    :   0.9rem;
  color: #888;
}

.thankyou-actions {
	display:    flex; 
  gap     :      1rem; 
   justify-content: center; 
                    flex-wrap: wrap;
}

.action-button {
  display: inline-block;
   padding: 1rem 2rem;
    border-radius: 8px;
   text-decoration: none;
	 font-weight: 600;
    transition: all 0.3s ease;
   font-size :     1rem; 

}

.action-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.action-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.action-button.secondary {
    background: #e0e7ff;
  color: #667eea;
  border: 2px solid #667eea;}

/* Cross-browser fix */

.action-button.secondary:hover {
    background: #667eea;
   color: white;
}

.testimonials-thankyou    {
	 padding: 3rem 2rem;
  background: #f8f9fa;
}
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        padding: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.7rem;
    }

    .service-subheading {
        font-size: 1.1rem;
    }

    .comparison-table-wrapper {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .thankyou-section {
        padding: 3rem 1.5rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .thankyou-icon svg {
        width: 100px;
        height: 100px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .cta-final-wrapper h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-section,
    .comparison-section,
    .faq-section,
    .cta-final-section {
        padding: 2rem 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .thankyou-icon svg {
        width: 80px;
        height: 80px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .action-button {
        padding: 0.8rem 1.5rem;
    }
}.policySection {
   padding: 80px 2rem;
                    min-height    :      70vh;
   background: white;
}

.policyContainer    {
  max-width: 900px;
  margin  :   0 auto;
   text-align: left;
}

.policyContainer h1  
  {

		font-size  :    3rem;
	color: #1a1a2e;
  margin-bottom: 2rem;
    margin-top: 0;
    font-weight :   700;


}

.policyContainer h2 {
	font-size: 1.8rem;
       color: #667eea;
      margin-bottom: 1rem;
       margin-top: 2.5rem;
      font-weight: 600;
}

.policyContainer p {
   margin-bottom: 1.5rem;
          text-align: justify;
   font-size: 1.05rem;
		color  :        #555;
   line-height: 1.8;
}

.policyContainer p:first-of-type  
  {
  font-size : 1.1rem;
  color: #666;
}

.policyContainer h2:not(:first-of-type) {
   padding-top    :   1rem;
  border-top: 2px solid #e0e7ff;
}

.policyContainer ul,
.policyContainer ol {
        margin-left: 2rem;
	margin-bottom  :        1.5rem;
}

.policyContainer li {

		margin-bottom: 0.8rem;
    color    :       #555;
         line-height: 1.8;

}

.policyContainer strong   {
      color: #667eea;
  font-weight: 600;

}

.policyContainer em {
    color: #764ba2;
} @media (max-width: 1024px) {
    .policySection {
        padding: 70px 2rem;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.98rem;
        line-height: 1.7;
        text-align: left;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1rem;
        padding-left: 0;
    }

    .policyContainer li {
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }

    .policyContainer h2:first-of-type {
        border-top: none;
        padding-top: 0;
    }
}

@media print {
    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer h1 {
        margin-bottom: 1rem;
        page-break-after: avoid;
    }

    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 2;
        widows: 2;
    }
}