* {
        margin: 0;
	    padding: 0;
	  box-sizing: border-box;
}

body  
  {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
   line-height:     1.6;
  color: #2c3e50;
  background-color: #fafafa;
}

html {
   scroll-behavior: smooth;
}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding:    1rem 0;
  position  :     sticky;
    top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 2rem;
    display: flex;
   justify-content:space-between;
  align-items: center;
}

.nav-logo img {
     height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
	gap: 2rem;
   align-items: center;
}

.nav-link  
  {
  color    :white;
   text-decoration: none;
    font-weight: 500;
         transition: opacity 0.3s ease;
  font-size: 1rem;


}  

.nav-link:hover {
   opacity: 0.8;
}

.burger {
    gap: 0.4rem;
    flex-direction: column;
  display: none;
	cursor: pointer;
}

.burger span {
          width: 25px;

   height: 3px;

  background     :       white;

      border-radius: 3px;

  transition: all 0.3s ease;
}@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero {
  max-width:  1200px;
   margin: 0 auto;
    padding     :   4rem 2rem;
   display: grid;
    grid-template-columns   :     1fr 1fr;
   gap: 3rem;
   align-items: center; 

}

.hero-content h1 {
       font-size: 3rem;
    color: #2c3e50;
                    margin-bottom    : 1rem;
  line-height: 1.2;
}

.hero-content p {

        font-size: 1.1rem;
	  color: #555;
	  margin-bottom: 2rem;
}

.hero-image img {


    width: 100%;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);}

.cta-button {
    display: inline-block;
   padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
  transition     :  transform 0.3s ease, box-shadow 0.3s ease;
   border :  none;
   cursor  :       pointer;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.services-preview {
    background: white;
  padding: 4rem 2rem;
   margin: 3rem 0;
}

.services-preview h2 {
   text-align  :center; 
    font-size: 2.5rem; 
    margin-bottom: 3rem; 
  color: #2c3e50;

}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;


}

.service-card {
       background : #f8f9fb;
  padding: 2rem;
  border-radius     :   12px;
	text-align: center;
   transition: all 0.3s ease;
    border: 2px solid transparent;

}

.service-card:hover {
    border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.service-icon {
   margin-bottom :      1.5rem;
   display: flex;
     justify-content: center;
    height:     60px;
   align-items: center;
}

.service-icon img{
	width: 50px;
       height: 50px;
		 stroke    :        #667eea;
}

.service-card h3 {
  font-size: 1.3rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
   color: #666;

	  font-size: 0.95rem;

	   line-height: 1.6;

}

.benefits {
  max-width: 1200px;
  margin  :       4rem auto;
  padding: 0 2rem;
}

.benefits h2 {
  text-align     :      center;
  font-size: 2.5rem;
                    margin-bottom: 3rem;
   color: #2c3e50;
}

.benefits-container {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;

}

.benefit-item {
  padding  :     2rem;
	  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	  border-radius: 12px;
	      border-left: 4px solid #667eea;
}

.benefit-number {

	  font-size: 2.5rem;
   font-weight: 700;
   color: #667eea;
  margin-bottom: 0.5rem;
}

.benefit-item h3{
	font-size: 1.3rem;

	 margin-bottom: 1rem;

	color: #2c3e50; 

}

.benefit-item p {
  color: #555;
   line-height: 1.7;
	
}


.gallery-showcase {
    padding     : 4rem 2rem;
  background: #f8f9fb;
    margin:     3rem 0; 
	
}

.gallery-showcase h2     {
   text-align: center;
  font-size: 2.5rem;
	 margin-bottom     :     3rem;
	color :   #2c3e50;
	
}

.gallery-container {
	max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 1.5rem; 
	
}

.gallery-item {
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;

}  

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width:      100%;
                    height: 250px;
         object-fit: cover;
    display: block;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding    :     4rem 2rem;
  text-align: center;
    margin: 4rem 0;
}



.cta-content h2 {
     font-size: 2.5rem;
	 margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
  max-width    :      600px;
   margin-left: auto;
  margin-right: auto;
}

.cta-button-large {
  padding: 1.2rem 3rem;
    font-size: 1.1rem;
       background: white;
  color: #667eea;
    font-weight: 700;
}

.cta-button-large:hover {
   background: #f0f0f0;
}

.contact-section {
	 max-width: 1200px;
  padding: 0 2rem;
       margin: 4rem auto;


}



.contact-section h2{

    text-align: center;
   font-size     :      2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;

}

.contact-container {
    display    :      grid;
    grid-template-columns   :       1fr 1fr;
  gap   :    3rem;
}

.contact-form {
   background: white;
	 padding: 2rem;
     border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
	   margin-bottom: 1.5rem;
     }

.form-group label     {

	    display: block;
	margin-bottom: 0.5rem;
  font-weight: 600;
	 color  :    #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
    padding :   0.75rem;
    transition: border-color 0.3s ease;
        border: 2px solid #e0e0e0;
    border-radius: 8px;
   font-size:   1rem;
  font-family:   inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: #667eea;
}

.submit-button {
       width:     100%;
    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
  border-radius: 8px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: transform 0.3s ease, box-shadow 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: 2rem;
}

.info-block {
         border-radius :      12px;
 background     :   #f8f9fb;
		padding: 1.5rem;
  border-left:      4px solid #667eea;
}

.info-block h3 {
  color   :       #667eea;
	margin-bottom   :   0.5rem;
    font-size: 1.1rem;
}


.info-block p {
   color: #555;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}.footer {
  background: #2c3e50;
    color: #ecf0f1;
    padding  : 3rem 2rem 1rem;
  margin-top :       4rem;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
   margin-bottom   : 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
               color: white;
   font-size: 1.1rem;
	
}

.footer-logo img {
       width: 100%;
	   max-width: 120px;
	  height: auto;
	}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem; 
	
}

.footer-section a {
         color: #ecf0f1;
	 text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {


    color: #667eea;

}

.footer-section p 
 {
    line-height: 1.8;
   font-size  :0.95rem;
}

.footer-bottom  
  {

	  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
               padding-top: 2rem;
               color: #95a5a6;
	}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}.service-icon img

{
  filter: drop-shadow(0 0 0px rgba(102, 126, 234, 0.3));
    transition :        all 0.3s ease;
}

.service-card:hover .service-icon img {
  filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.6));
}

.services-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :       white;
    padding: 5rem 2rem;
   text-align: center;
}

.services-header-content h1 {
   font-size: 2.8rem;
  margin-bottom: 1rem;
   line-height: 1.2;
}

.services-header-content p {
   font-size: 1.2rem;
	  max-width: 700px;
			 margin: 0 auto;
	   opacity: 0.95;
}  @media (max-width: 768px) {
    .services-header {
        padding: 3rem 1rem;
    }

    .services-header-content h1 {
        font-size: 1.8rem;
    }

    .services-header-content p {
        font-size: 1rem;
    }
}.services-detailed {
   max-width: 1200px;
    margin: 4rem auto;
   padding:      0 2rem;
}

.services-container {
                    display: flex;
   flex-direction: column;
   gap: 5rem;
}

.service-item {
  display: grid;
	 grid-template-columns     :      1fr 1fr;
   gap: 3rem;
  align-items:       center;
}

.service-item-reversed {
	 direction   :     rtl;
}

.service-item-reversed > * {
   direction :     ltr;
}

/* Debug styles */


.service-item-image {

	overflow   :     hidden;
  border-radius: 15px;
    -webkit-border-radius: 15px;


}

.service-item-image img     {
  width: 100%;
               height: auto;
	display: block;
   transition: transform 0.4s ease;
}

.service-item:hover .service-item-image img {
  transform: scale(1.05);
}

.service-item-content h2 {
  font-size: 2.2rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;


}

.service-intro {
  font-size: 1.1rem;
  color: #555;
   margin-bottom: 2rem;
  line-height: 1.8;
}

.service-features h3 {
  font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}
/* Vendor-specific */

.service-features ul   {
   list-style: none;
    margin-bottom: 2rem;
	
}

.service-features li		{
  padding :    0.7rem 0 0.7rem 2rem;

   color:#555;

  position: relative;

         line-height: 1.6;
}

.service-features li:before {
  content: "✓"; 
	     position: absolute; 
	  left: 0; 
	    color: #667eea; 
	    font-weight: bold; 
	    font-size: 1.2rem;
}

.service-details {
	    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
	  gap: 1rem; 
	    margin-top: 2rem; 
	  padding-top: 2rem; 
	    border-top: 2px solid #e0e0e0;}

.detail-item {
   display: flex;

	    flex-direction  :       column;
}

.detail-label {
  font-size: 0.9rem;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   color: #999;
    margin-bottom: 0.3rem;
}

.detail-value {
    font-size: 1.1rem;
  color: #667eea;
   font-weight: 600;
}
@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item-reversed {
        direction: ltr;
    }

    .service-item-content h2 {
        font-size: 1.6rem;
    }

    .service-details {
        grid-template-columns: 1fr;
    }
}.service-comparison {


    max-width: 1200px;
    margin: 5rem auto;
  padding: 0 2rem;
	}

.service-comparison h2 {


   text-align: center;
	font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
	}

.comparison-table {

		 background: white;
  border-radius     :     12px;
   overflow :        hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	}

.table-header {
    display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  font-weight: 600;
}

.header-cell {
   padding: 1.5rem;
     text-align: center;
	font-size: 0.95rem;
}

.table-row {
   display: grid;
  grid-template-columns: repeat(5, 1fr);
         border-bottom: 1px solid #e0e0e0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell	{
	padding: 1.5rem;
      text-align: center;
   color: #555;
  font-size: 0.95rem;
}

.table-cell:first-child {
               text-align  :        left;
        font-weight: 600;
    color: #2c3e50;
  background: #f8f9fb;
}

.table-row:nth-child(even) .table-cell:first-child     {

  background    :      #f8f9fb;}

.table-cell.highlight {
       color: #667eea;
   font-weight: 600;
}@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .header-cell {
        padding: 1rem;
        text-align: left;
    }

    .table-cell {
        padding: 1rem;
        text-align: left;
    }

    .table-cell:first-child:before {
        content: attr(data-label);
        font-weight: 600;
    }
}.faq-services {
  max-width: 900px;
    margin: 5rem auto;
   padding: 0 2rem;
}

/* Minified version */

.faq-services h2 {
	 text-align  :center;
    font-size   :   2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.faq-container {
	display: flex;
   flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* FIXME: IE11 compatibility */


.faq-question {
   width: 100%;
  padding: 1.5rem;
  background    :       #f8f9fb;
    border: 2px solid transparent;
	cursor: pointer;
   display: flex;
         justify-content: space-between;
  align-items: center;
          font-size: 1.1rem;
   font-weight: 600;
    color: #2c3e50;
   transition: all 0.3s ease;
   text-align: left;
}

.faq-question:hover {
	border-color: #667eea;
	  background: #e8ecf8;
}

.faq-icon  {
    width: 24px;
    height: 24px;
    stroke: #667eea;
  transition: transform 0.3s ease;

}

.faq-question.active .faq-icon {
  transform: rotate(180deg); 
	
}

.faq-answer {
    max-height: 0;
  overflow: hidden;
         transition: max-height 0.3s ease;
}

.faq-answer.active {
	   max-height: 500px;
     }
/* Auto-generated CSS */


/* Temporary fix */
.faq-answer p {
   padding: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.cta-services     {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
   text-align: center;
    margin: 5rem 0;
}

.cta-services-content h2
{
  font-size : 2.5rem;
  margin-bottom: 1rem;
}

.cta-services-content p {

	   font-size: 1.1rem;
 margin-bottom: 2rem;
    max-width: 600px;
   margin-left:   auto;
    margin-right: auto;
    opacity : 0.95;}

.thankyou-container {
   min-height: 70vh;
   display: flex;
    align-items: center;
    justify-content: center;
   padding  :        3rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.thankyou-content 
 {
         text-align: center;

	   max-width: 700px;

	    background: white;

	    padding :  3rem;

	  border-radius: 20px;

	  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon img	{
    width: 80px;
	 height   : 80px;
  stroke: #2ecc71;
  filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.3));
}

/* State modifiers */

.thankyou-content h1 {
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 1rem;
  line-height: 1.2;
} 

.thankyou-subtitle {
       font-size: 1.2rem;
  color: #667eea;
  margin-bottom: 2rem;
   font-weight: 500;
}

/* Typography */

.thankyou-info 
 {
    padding   :        2rem;
          margin-bottom  :     2rem;
  border-left: 4px solid #667eea;
    background: #f8f9fb;
   border-radius: 12px;


}

.thankyou-info p {
   color: #555;
     margin-bottom: 1rem;
    line-height: 1.8;
}

/* Framework override */
/* Cross-browser fix */



/* Animation and transitions */


.thankyou-info p:last-child 
 {


  margin-bottom: 0;
}

.next-steps	{
  margin: 3rem 0;
  text-align: left;
}

.next-steps h2 {
	 font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom  :        2rem;
	 text-align: center;
}
/* Cross-browser fix */


.steps-list {
    display: flex;
   flex-direction: column;
      gap: 1.5rem;
}

.step-item {
      display     :      flex;
   gap: 1.5rem;
  align-items: flex-start;}

.step-number {


   flex-shrink: 0;
   width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
  display:        flex;
    align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;}

.step-text h3 {
  font-size: 1.1rem;
   color: #2c3e50;
    margin-bottom    :0.5rem;
}

.step-text p {
  color   :      #666;
    font-size: 0.95rem;
}

.thankyou-actions {
  gap: 1rem;
   margin: 2rem 0;
    flex-wrap: wrap;
  display: flex;
          justify-content     :      center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
	display: inline-block;
   font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
}

/* Layout styles */

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {

  background :  #f0f0f0;
    color: #667eea;
       border: 2px solid #667eea;
     }

.btn-secondary:hover     {
    background: #667eea;
   color: white;
}

.contact-block-thankyou {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 2rem;
  border-radius: 12px;
   margin-top    :       2rem;
  border-left: 4px solid #667eea;
}

.contact-block-thankyou h3 {
    font-size: 1.2rem;
   color: #2c3e50;
    margin-bottom: 0.5rem;
	
}
	/* Debug styles */


.contact-block-thankyou p {
    color: #555;
  margin-bottom  :    0.5rem;
}

.phone-display {
  font-size: 1.5rem;
   color: #667eea;
        font-weight: 700;
}

/* Animation and transitions */

.additional-info {
   max-width: 1200px;
    margin: 4rem auto;
  padding: 0 2rem;
}
	/* Performance critical */
.additional-info h2 {
  text-align:     center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.prep-cards {


  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
	     gap: 2rem;

}

.prep-card {
    background: white;
  padding: 2rem;
      border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
   border-top: 4px solid #667eea;
}

.prep-card:hover  {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.prep-card h3     {
   font-size: 1.2rem;
    color: #2c3e50;
	margin-bottom: 1rem;
}

.prep-card p
	{
   color: #555;

	  line-height: 1.7;

		font-size: 0.95rem;
}
@media (max-width: 768px) {
    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}.policySection {

   padding  :     80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);

}

.policyContainer {
  max-width: 800px;
    margin: 0 auto;
  text-align     :     left;
}

.policyContainer h1 {
	font-size: 2.8rem;
    color:        #2c3e50;
   margin-bottom     :     2rem;
   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    :    3px solid #667eea;
    padding-bottom: 0.8rem;
}

.policyContainer p {
  color :  #555;
	  margin-bottom: 1.3rem;
		line-height: 1.8;
	  font-size: 1rem;
}

.policyContainer strong {
   color: #2c3e50;
  font-weight   :    600;
}

.policyContainer ul {
    margin-left: 2rem;
  margin-bottom: 1.3rem;
}

.policyContainer li
	{
   color: #555;
   margin-bottom: 0.8rem;
   line-height: 1.6;
	
}

.policyContainer h1 + h2{
	margin-top: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.1rem;
        line-height: 1.7;
    }

    .policyContainer ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 0.9rem;
    }
}