* {
    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: #f8f9fa;

}

/* TODO: optimize for mobile */

.nav-container {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 0;
   position: sticky;
    top: 0;
   z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
/* Vendor-specific */
.nav-wrapper {

	  max-width: 1200px;
	   margin: 0 auto;
		 display     :  flex;
	    justify-content: space-between;
	    align-items: center;
		padding: 15px 20px;


}

.nav-logo img {
    height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
	list-style: none;
  gap: 40px;
}

.nav-link     {

	   color: #ffffff;
       text-decoration: none;
    font-size: 16px;
    font-weight: 500;
   transition    :       all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {


     color :       #7ec8e3;


}

.nav-link.active::after 
 {
  content: '';
     position: absolute;
                    bottom: -5px;
  left: 0;
    width: 100%;
  height: 2px;
    background: #7ec8e3;
}

.nav-toggle {
  cursor: pointer;
  gap: 6px;
	flex-direction: column;
  display: none;
   background :   none;
   border: none;
}

.burger-line {
  width: 25px;
   transition     :       all 0.3s ease;
	-webkit-transition: all 0.3s ease;
   height:    3px;
               border-radius: 2px;
	 background: #ffffff;
}

.nav-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active .burger-line:nth-child(2) {
    opacity: 0;


}

.nav-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
   display: flex;
	 align-items: center;
   justify-content: space-between;
    max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  gap: 60px;
}

.hero-content {
	 flex: 1;
}

/* Typography */

.hero-section h1 {
  font-size: 48px;
   font-weight: 700;
  line-height:       1.2;
    margin-bottom: 20px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   background-clip: text;
     }

.hero-subtitle {

	   color: #555;
    font-size  :   18px;
    line-height: 1.8;
   margin-bottom: 30px; 

     }

.cta-button {

	                    display: inline-block;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
  padding: 16px 40px;
   text-decoration: none;
    border-radius   :      50px;
    font-weight: 600;
	transition: all 0.3s ease;
   border: 2px solid transparent;

}  

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3); 
	
}

.hero-image    {
	flex    :      1;
}

/* Framework override */

.hero-image img {

	  width: 100%;
    height: auto;
	 border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.intro-section	{

		 background: #ffffff;
	  padding: 60px 20px;
	}

.intro-container {


  max-width :900px;
   margin: 0 auto;
	 text-align: center;}

.intro-section h2 {
	   font-size :        36px;
		 margin-bottom: 30px;
    color: #1e3c72;


}

.intro-section p {
    line-height     :     1.8; 
	    color: #555; 
	   font-size: 16px;
}

.benefits-section {
  padding: 80px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.benefits-section h2
{
	   font-size: 36px;
      text-align: center;
     margin-bottom: 50px;
       color: #1e3c72;


}

.benefits-grid

{
  display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.benefit-card {
     background  :  #ffffff;
   padding: 40px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.benefit-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
          font-size :  22px;
   margin-bottom:  15px;
   color: #2a5298;
}

.benefit-card p {
  font-size: 14px;
   color: #666;
   line-height: 1.7;
}

.showcase-section {
  background: #f8f9fa;
   padding    :   80px 20px;
}

.showcase-section h2


{
    font-size: 36px;
    text-align: center;
   margin-bottom:50px;
   color: #1e3c72;
   max-width     :        1200px;
   margin-left: auto;
  margin-right: auto;
}  

.showcase-grid {
    max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap     :        30px;

}

.showcase-item {


   background: #ffffff;
      border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition:      all 0.3s ease;
	
	} 

.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.showcase-item img {

	    width: 100%;
    height: 220px;
               object-fit: cover;
}


.showcase-content {

	    padding: 30px;

}

.showcase-content h3 {
   font-size: 20px;
   margin-bottom: 12px;
  color: #2a5298;
}

.showcase-content p {

               font-size: 14px;
    color :  #666;
  line-height: 1.6;


}

.cta-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
         padding   :        80px 20px;
   text-align: center;
}

.cta-wrapper {

	max-width: 800px;
	margin: 0 auto;
	}

.cta-section h2 {
   font-size: 36px; 
	          color: #ffffff; 
	    margin-bottom: 20px; 

}

.cta-section p{
   font-size     :     18px;
	color: #e8f0f7;
  margin-bottom: 40px;
}

.cta-button-primary {
   display: inline-block;
   background: #ffffff;
  -moz-transition: all 0.3s ease;
  color: #1e3c72;
    padding: 16px 50px;
   -webkit-transition: all 0.3s ease;
       -o-transition: all 0.3s ease;
  text-decoration: none;
    border-radius: 50px;
  -moz-border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
	font-size: 16px;
}

.cta-button-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-section {

		 max-width: 1200px;
		 margin: 0 auto;
  padding   :80px 20px;
}

/* Browser compatibility */


/* Responsive design */


/* Animation and transitions */

.contact-container {
       max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
          font-size: 36px;
    text-align: center;
   margin-bottom    :      50px;
   color: #1e3c72;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
	 border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
   margin-bottom: 25px;
}

.form-group label  
  {
   display: block;
	margin-bottom: 8px;
   font-weight: 600;
               color: #2c3e50;
	 font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea		{
	 width: 100%;
          padding: 12px 15px;
  border: 2px solid #e0e0e0;
   border-radius: 6px;
    font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color    :     #2a5298;
  box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1); 

}

.form-submit 
 {
    width: 100%;

	  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);

	  color: white;

	  padding: 14px;

	    border: none;

	    border-radius     :    6px;

	   font-size: 16px;

	    font-weight: 700;

	    cursor: pointer;

	  transition: all 0.3s ease;
}
	/* Utility classes */
.form-submit:hover {
	  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
	}

.footer-section    {
    background: #1a2332;
   color     :        #ffffff;
  padding: 60px 20px 30px;
}

.footer-container {
   max-width: 1200px;
      margin:      0 auto;
}
	/* Vendor-specific */

/* State modifiers */

/* Auto-generated CSS */
.footer-content {
  display    :      flex;
  gap: 40px;
   margin-bottom: 40px;
  align-items: flex-start;
}

.footer-logo-img {
    height: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.footer-info {
    flex: 1;
}

.footer-address {
	  font-size: 14px;
   margin-bottom  :    10px;
  line-height: 1.6;
	}

.footer-phone {
   font-size   :14px;
    font-weight: 600;
      color   :       #7ec8e3; 
	
}

.footer-links {
   margin-bottom  :        40px;
} 

.footer-links h4 {
    font-size:      16px;
    margin-bottom    : 15px;
    color:  #ffffff;
}
/* Responsive design */

.footer-links ul {
	list-style: none;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap    :10px;
}

.footer-links a {
	 color: #b0bec5;
   text-decoration: none;
	font-size: 14px;
	 transition: all 0.3s ease;
}

.footer-links a:hover {
   color: #7ec8e3;
}

.footer-bottom {


   text-align     :   center;
	padding-top: 30px;
    border-top     : 1px solid #374859;
    font-size: 13px;
  color : #90a4ae;
     }
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        gap: 0;
        padding: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
    }

    .hero-section {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .benefits-section,
    .showcase-section {
        padding: 60px 20px;
    }

    .benefits-section h2,
    .showcase-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-button,
    .cta-button-primary {
        padding: 14px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .benefits-section h2,
    .showcase-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .nav-wrapper {
        padding: 12px 15px;
    }

    .nav-menu {
        top: 60px;
    }

    .footer-links h4 {
        font-size: 14px;
    }

    .footer-address,
    .footer-phone {
        font-size: 13px;
    }
}.services-hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
               padding: 100px 20px;
  text-align: center;
}

.services-hero-content h1 {
       font-size: 48px;
    font-weight: 700;
  margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero-content p {
  font-size: 18px;
   max-width: 700px;
   margin: 0 auto;
  opacity: 0.95;
}

.services-overview {
  background: #ffffff;
    padding: 60px 20px;
   text-align: center;
}

.services-container {
  max-width: 1200px;
    margin: 0 auto;
}

.services-overview h2 {
  font-size: 36px;
   color: #1e3c72;
   margin-bottom: 20px;
}

.services-intro {
    font-size: 16px;
  color: #555;
    max-width: 800px;
   margin: 0 auto;
    line-height: 1.8;
}

.services-detailed {
   background: #f8f9fa;
   padding :     80px 20px;
}

.service-card-detailed {


   background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
   margin-bottom: 50px;
  display: grid;
      grid-template-columns: 1fr 1fr;
    transition  :   all 0.3s ease;
	}

.service-card-detailed:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); 

}

.service-image {
  height: 100%;
  min-height     : 400px;
}

.service-image img {
   width: 100%;
  height: 100%;
    object-fit: cover;
}

.service-details {
	justify-content: center;
	 padding: 50px 40px;
	 display: flex;
   flex-direction: column;
}

.service-details h3 {
  font-size     :      28px;
  color: #1e3c72;
  margin-bottom: 15px;
	font-weight: 700;
	}

.service-description {
   font-size: 15px;
       color: #555;
       line-height: 1.7;
     margin-bottom:    25px;
}

.service-highlights {
   background: #f0f5fa;

   padding: 25px;

  border-radius: 8px;

  margin: 25px 0;

    display :    grid;

  grid-template-columns: repeat(2, 1fr);

	gap: 15px;
}

.highlight   {
    font-size: 13px;
   color: #2c3e50;
}

.highlight strong {
   color :#2a5298;
    display: block;
   margin-bottom :     3px;
}

.service-content {
   line-height: 1.7;
               color: #666;
    font-size:  14px;
}



.why-trustlead {


  background: #ffffff;
  padding: 80px 20px;


}

.why-trustlead h2 {
   font-size    :       36px;
  color   :    #1e3c72;
  text-align: center;
	margin-bottom: 50px;
}

.why-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
   background: #f8f9fa;
  padding: 35px;
  border-radius: 10px;
   border-left:   4px solid #2a5298;
   transition: all 0.3s ease;
}

.why-card:hover {
	 background   :        #e8f0f7;
  transform: translateX(5px);
}

.why-card h4 {
          font-size: 18px;
   color: #1e3c72;
    margin-bottom :  15px;
  font-weight: 700;
}

.why-card p {
	 font-size: 14px;
    color: #666;
    line-height: 1.7;
}  

.process-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   padding  : 80px 20px;
   color: white;
}

.process-section h2
{
    font-size: 36px;
    text-align: center;
   margin-bottom: 60px;
  color: white;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap    :30px;
}



.process-step {
  background: rgba(255, 255, 255, 0.1);
	padding   :        35px 25px;
     border-radius: 10px;
    text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease; 
	
}

.process-step:hover

{
  background: rgba(255, 255, 255, 0.15);

  transform: translateY(-5px);
	}

.step-number {
   font-size: 48px;
   font-weight: 700;
	 margin-bottom: 15px;
   color: #7ec8e3;
}

.process-step h4 {
    font-size: 18px;
  margin-bottom: 15px;
                    color: white;
     font-weight: 700;
}

.process-step p     {


   font-size: 14px;
	line-height   :     1.6;
  color: #e8f0f7;


}

.cta-services {
    background: #ffffff;
	   padding: 60px 20px;
	    text-align: center;
}

.cta-services h2 {
    font-size: 32px;
    color: #1e3c72;
   margin-bottom: 20px;
}

.cta-services p {


  font-size: 16px;
    color: #555;
  margin-bottom: 30px;
}

.thankyou-container {
  min-height: calc(100vh - 200px);
    display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f7 100%);
    padding: 50px 20px;
}

.thankyou-content {
  background: white;
  border-radius: 15px;
    padding: 60px 40px;
   max-width: 700px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
 text-align: center;
}

.success-icon {
   margin-bottom: 30px;
  display: flex;
   justify-content: center;
}

.success-icon svg {
      color: #2ecc71;
   stroke: #2ecc71;
}

.thankyou-content h1 {
	font-size: 36px;
  color: #1e3c72;
    margin-bottom: 10px;
}

.thankyou-subtitle {
  color: #2a5298;
   margin-bottom    :       30px;
   font-weight: 600;
  font-size: 18px;
}

.thankyou-message {
  background  :      #f0f5fa;
    padding: 30px;
  border-radius: 8px;
    margin: 30px 0;
  text-align: left;
}

.thankyou-message p {

	   font-size: 15px; 
   color    : #555; 
    line-height: 1.8; 
    margin-bottom: 15px;
}

.thankyou-message p:last-child {
  margin-bottom: 0;
}

.next-steps {
   margin: 40px 0;
    text-align: left;
	
}

.next-steps h3  
  {
   font-size: 20px;
   color: #1e3c72;
  margin-bottom: 20px;
   text-align     :       center;
}

.steps-list {
  list-style:     none; 
	    counter-reset: step;
}


.steps-list li {

	   padding-left: 30px;
	   margin-bottom: 15px;
	    position: relative;
	   font-size: 14px;
	   color: #555;
	     line-height     :       1.6;
     }

.steps-list li:before {
  content: counter(step);
 counter-increment   :step;
   position: absolute;
   left: 0;
  top: 0;
   background: #2a5298;
                    color: white;
	width :  24px;
  height     : 24px;
    border-radius: 50%;
  display: flex;
          align-items: center;
  justify-content: center;
    font-size  :        12px;
    font-weight: 700;
}

.contact-info-thankyou {
	    background: #e8f0f7;
  padding: 30px;
  border-radius: 8px;
    margin: 30px 0; 
	
     }

.contact-info-thankyou h3 {
    font-size  :  18px; 
    color: #1e3c72; 
    margin-bottom: 15px;
}

.contact-info-thankyou p {
    font-size: 14px;
   color: #555;
      margin-bottom: 10px;
}

.phone-highlight {
    font-size: 24px;
    color: #2a5298;
          font-weight: 700;
  margin: 15px 0 !important;


}

.address-info {
  font-size: 13px;

	   color: #777;
}

.thankyou-actions {
	display: flex;
   gap:    15px;
  margin-top: 40px;
   justify-content : center;
	 flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {


     text-decoration: none;
	 padding :        14px 35px;
    border-radius: 50px;
  font-weight: 600;
   font-size: 14px;
               transition: all 0.3s ease;
	}

.btn-primary {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

.btn-secondary		{
    background: #f0f5fa;
    color :   #2a5298;
    border: 2px solid #2a5298;
}

.btn-secondary:hover {
    color: white;
	 background :        #2a5298;
  transform: translateY(-3px);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 32px;
    }

    .service-card-detailed {
        grid-template-columns: 1fr;
    }

    .service-image {
        min-height: 250px;
    }

    .service-details {
        padding: 35px 25px;
    }

    .service-details h3 {
        font-size: 22px;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .process-step {
        padding: 25px 15px;
    }

    .step-number {
        font-size: 36px;
    }

    .thankyou-content {
        padding: 40px 25px;
    }

    .thankyou-content h1 {
        font-size: 28px;
    }

    .next-steps h3 {
        font-size: 18px;
    }

    .phone-highlight {
        font-size: 20px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 24px;
    }

    .services-hero-content p {
        font-size: 15px;
    }

    .service-card-detailed {
        margin-bottom: 30px;
    }

    .service-details {
        padding: 25px 15px;
    }

    .service-details h3 {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
    }

    .service-highlights {
        padding: 15px;
        gap: 10px;
    }

    .highlight {
        font-size: 12px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-card {
        padding: 25px;
    }

    .why-card h4 {
        font-size: 16px;
    }

    .process-section h2 {
        font-size: 28px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-services h2 {
        font-size: 24px;
    }

    .thankyou-content {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }

    .thankyou-message {
        padding: 20px;
    }

    .contact-info-thankyou {
        padding: 20px;
    }

    .phone-highlight {
        font-size: 18px;
    }

    .steps-list li {
        padding-left: 35px;
        font-size: 13px;
    }
}.policy-hero {
     background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
	padding: 80px 20px;
 text-align :        center;
     }

.policy-hero-content h1 {
	 line-height     :1.2;
                  font-size: 42px;
      font-weight: 700;
       margin-bottom: 15px;
}

.policy-hero-content p {
    font-size: 16px;
   opacity: 0.95;
    max-width :      600px;
	margin: 0 auto;
}

.policySection {
    padding: 80px 20px;
    background: #f8f9fa;
}

.policyContainer {
   max-width: 900px;
   margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
    font-size: 28px;
    color: #1e3c72;
	 margin-bottom: 20px;
 font-weight: 700;
	margin-top: 40px; 

}


.policyContainer h2:first-child {
	  margin-top: 0;
	}

.policyContainer p {
   color: #555;
  margin-bottom :      18px;
   line-height  :1.8;
  font-size: 15px;
}

.policyContainer strong {
	 color: #2a5298;
   font-weight: 600;
	
}

.policyContainer p strong {

    display     :inline;


}

.policyContainer p:last-child {
    margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 20px;
    }

    .policy-hero-content h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .policy-hero-content p {
        font-size: 15px;
    }

    .policySection {
        padding: 60px 20px;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 24px;
        margin-bottom: 15px;
        margin-top: 35px;
    }

    .policyContainer p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 50px 15px;
    }

    .policy-hero-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .policy-hero-content p {
        font-size: 14px;
    }

    .policySection {
        padding: 40px 15px;
    }

    .policyContainer h2 {
        font-size: 20px;
        margin-bottom: 12px;
        margin-top: 30px;
    }

    .policyContainer p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.6;
    }
}

@media print {
    .nav-container,
    .footer-section {
        display: none;
    }

    .policy-hero {
        background: white;
        color: #1e3c72;
        padding: 30px 0;
    }

    .policy-hero-content h1 {
        font-size: 28px;
        color: #1e3c72;
    }

    .policy-hero-content p {
        color: #555;
    }

    .policySection {
        background: white;
        padding: 0;
    }

    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}