* {
    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: #1a1a1a;
  background-color: #fafbfc;
}

html {
  scroll-behavior: smooth;
} 

.main-header {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
      top: 0;
   z-index: 1000;
}

.header-wrapper {
   max-width: 1200px;
    margin: 0 auto;
   padding     :  20px 30px;
	 display: flex;
  justify-content: space-between;
  align-items     :      center;
}

.logo-section {
    flex: 0 0 auto;
}

.site-logo {
   width: auto;
    height   :     50px;
}

.burger-menu {
    display  :    none;
   background  :        none;
  border: none;
    flex-direction: column;
  cursor: pointer;
    gap: 6px;
   padding: 8px; 

}

.burger-line
	{
   width: 28px;
    height: 3px;
         background :   #1a1a1a;
    border-radius  :    2px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1)  
  {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) {
   opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
/* Development only */


.navigation {
               display   :     flex;
  gap: 40px;
  align-items   :center;
}

/* Vendor-specific */


/* Custom modifications */


.nav-link {


    text-decoration: none;
   color :   #1a1a1a;
    font-weight: 500;
    font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
     }

.nav-link::after {
  content: '';
                    position: absolute;
    width: 0;
    height     :       2px;
   bottom: -5px;
   left: 0;
   background :       #0066cc;
    transition    : width 0.3s ease; 

}

.nav-link:hover::after {


	width: 100%;


}
	/* Browser compatibility */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding    :     80px 30px;
  display  :    grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
   flex-direction: column;
   gap: 30px;
}
/* Build system output */

/* TODO: optimize for mobile */


.hero-section h1 {
   font-size: 48px;
   line-height: 1.2;
    font-weight: 700;
   color    :        #0a0e27;
}

.hero-subtitle {
   font-size: 18px;
	color: #4a5568;
    line-height    : 1.8;


}

.hero-buttons {
    display: flex;
        gap: 20px;
   flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 8px;
    text-decoration: none;
  font-weight: 600;
        font-size     :      16px;
	transition: all 0.3s ease;
    border: none;
    cursor   :  pointer;
    text-align:        center;
				 display: inline-block;
} 

.btn-primary {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);

   color: white;

}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
   color: #0066cc;
  border: 2px solid #0066cc;
   background: white; 

}

.btn-secondary:hover {
  background: #f0f7ff;

}

.btn-large {
  padding: 18px 48px;
    font-size: 18px;
}

.btn-submit {
    background     :#0066cc;
   color: white;
      width: 100%;
}

.btn-submit:hover  {
  background: #0052a3;
}

.hero-image {
     width    :      100%;
   height     :     auto;
   border-radius: 12px;
    object-fit: cover;
}

.benefits-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: 80px 30px;

}

.benefits-container {
  max-width: 1200px;
   margin: 0 auto;
}

.benefits-container h2 {
  font-size: 42px;
	font-weight: 700;
  text-align: center;
   margin-bottom    :  60px;
	color: #0a0e27;
}

.benefits-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;


} 

.benefit-card{
    background: white;
   padding: 40px;
    border-radius     :    12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Legacy code */

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
}

/* Utility classes */

.benefit-icon {
	    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
         margin-bottom: 20px;
}

.benefit-card h3 {
    color: #0a0e27;
   margin-bottom: 15px;
   font-size: 22px;
    font-weight: 700;
}

.benefit-card p {
    color: #4a5568;
   line-height: 1.8;
  font-size   :16px;
}

.services-preview {
	 max-width: 1200px;
   margin     :      0 auto;
    padding    :        80px 30px;
}

.services-preview h2 {
    font-size: 42px;
      font-weight: 700;
    text-align: center;
    margin-bottom  :   60px;
    color: #0a0e27;
	}

.services-cards-wrapper {
       display: flex;
	 flex-direction: column;
   gap: 60px;
}

.service-showcase {
  display   :     grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
   align-items: center;
}
	/* Responsive design */


/* Browser compatibility */
	/* NOTE: keep for legacy support */

.service-showcase.alternate {
    grid-template-columns: 1fr 1fr;

}

.service-showcase.alternate .showcase-image {
  order: 2;
}

.service-showcase.alternate .showcase-content {
    order    : 1;
}

.showcase-image {
               width: 100%;
    height: auto;
   border-radius: 12px;
	 object-fit     :cover;
}

.showcase-content h3 {
    font-size: 32px;
   font-weight: 700;
	 color: #0a0e27;
   margin-bottom: 20px;
}

.showcase-content p {
    font-size: 18px;
         color: #4a5568;
  line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, #0066cc 0%, #004fa3 100%);
	color: white;
   padding :80px 30px;
   text-align :center;


}

.cta-wrapper    {
    max-width: 800px;
  margin  :      0 auto;
}

.cta-section h2 {
   font-size  : 42px; 
		 font-weight: 700; 
		 margin-bottom: 20px;
}

.cta-section p {
	 font-size: 20px;
	 margin-bottom: 40px;
	opacity: 0.95;
  line-height: 1.8;
}

.cta-section .btn {
        background: white;
       color   :       #0066cc;
}

.cta-section .btn:hover {
    background: #f0f7ff;
}

.contact-section {
    max-width: 900px;
  margin: 0 auto;
	padding: 80px 30px; 

}

.contact-container h2 {
    font-size     :   42px;
   font-weight: 700;
  text-align: center;
 margin-bottom: 15px;
  color: #0a0e27;
}

.contact-subtitle {
      text-align: center;
   color: #4a5568;
        font-size: 18px;
    margin-bottom: 50px;
}

.contact-form {
         background: white;
   padding: 50px;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-row {
                    display   :    grid;
	  grid-template-columns: 1fr 1fr;
	  gap: 20px;
		 margin-bottom: 20px;
}

.form-input,
.form-textarea {
  padding: 14px 18px;
	 border: 2px solid #e0e0e0;
	 border-radius: 8px;
  font-size :    16px;
  font-family: inherit;
               transition: border-color 0.3s ease; 

}
/* Custom modifications */

.form-input:focus,
.form-textarea:focus {


    outline: none;
    border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);


}

/* Layout styles */
.form-textarea {
    grid-column: 1 / -1;
  min-height: 150px;
    resize: vertical;
   margin-bottom     : 20px;
}

.btn-submit {
   	grid-column: 1 / -1;



}

.main-footer {
    background:  #0a0e27;
   color    :   white;
     padding: 60px 30px 30px;
    margin-top  :  100px;
}

.footer-wrapper {
  max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 60px;
  margin-bottom: 40px;
}

/* Build system output */

.footer-logo-block {
    display: flex;
  align-items: flex-start;
}

.footer-logo {
  height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

/* Legacy code */

/* Layout styles */
.footer-info h4,
.footer-navigation h4 {
  font-size  :  18px; 
   font-weight: 700; 
   margin-bottom: 20px; 
	
}

.footer-address {
    font-size: 16px;
         line-height: 1.8;
  margin-bottom: 15px;


}

.footer-phone {
   font-size   :    16px;
	margin-bottom: 15px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
   text-decoration     :  none;
     font-size: 16px;
  margin-bottom: 12px;
   transition  :        color 0.3s ease; 

}

.footer-link:hover {
    color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
     padding-top: 30px;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
     font-size: 14px;
}
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navigation {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .navigation.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 16px 30px;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-showcase,
    .service-showcase.alternate {
        grid-template-columns: 1fr;
    }

    .service-showcase.alternate .showcase-image {
        order: 1;
    }

    .service-showcase.alternate .showcase-content {
        order: 2;
    }

    .contact-form {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 15px 20px;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .benefits-container h2,
    .services-preview h2,
    .cta-section h2,
    .contact-container h2 {
        font-size: 28px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .showcase-content h3 {
        font-size: 24px;
    }

    .showcase-content p {
        font-size: 16px;
    }
}.services-hero {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
  color: white;
   padding: 100px 30px;
  text-align: center;
  margin-top: 70px;
}

/* Typography */

.services-hero-content {
    max-width: 900px;
    margin    :    0 auto;
}

.services-hero h1 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
  font-size   :48px;
}

.services-hero p {
   font-size: 20px;
   opacity: 0.95;
	line-height: 1.8;
}

.services-detailed {

	 max-width: 1200px;
   margin: 0 auto;
   padding: 80px 30px;

}

/* Custom modifications */

.services-container {


   display: flex;
	 flex-direction: column;
  gap: 80px;
     }

.service-item {
          display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: stretch;
} 

.service-item.alternate {
	 grid-template-columns: 1fr 1fr;
}

.service-item.alternate .service-item-header {
  order: 2;
}

.service-item.alternate .service-item-body {
    order: 1;
}


.service-item-header {
  display: flex;
  flex-direction    :      column;
   gap: 20px;
}

.service-item-image {
   object-fit: cover;
  height: 400px;
    width: 100%;
   border-radius: 12px;
}

.service-item-header h2 {
    font-size: 36px;
  font-weight: 700;
  color : #0a0e27;
   line-height    :      1.3;
}
	/* Cross-browser fix */



/* Temporary fix */

.service-item-body {
  display: flex;
          flex-direction: column;
      gap   :30px;
     justify-content: flex-start;
}

.service-description {

	    font-size: 18px;
    color: #4a5568;
	 line-height: 1.8;
     }

.service-features h3 {
  font-size: 20px;
 font-weight  : 700;
    color: #0a0e27;
  margin-bottom  :    15px;
}

/* Custom modifications */

.features-list {
  list-style: none;
    padding: 0;
}

.features-list li {
  padding   : 10px 0 10px 30px;
    position: relative;
   color: #4a5568;
    font-size: 16px;
		 line-height :    1.6;


}

.features-list li:before {

  content: '→';
   position: absolute;
    left    :0;
          color  :#0066cc;
    font-weight: bold;
   font-size: 18px;

}

.service-details-box     {

		display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 20px;
  padding   :        25px;
   background: #f8f9fa;
    border-radius: 8px;
   border-left: 4px solid #0066cc;
	}

.detail-item {
    display: flex;
  flex-direction: column;
   gap: 8px;
}

.detail-label {
  font-weight: 700;
   color    :      #0a0e27;
  font-size:    14px;
    text-transform: uppercase;
  letter-spacing: 0.5px;
	
}

.detail-value {
    color: #4a5568;
       font-size     :   16px;

}

.pricing-section {
     background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: 80px 30px;


}

.pricing-section h2 {
   font-size: 42px;
    font-weight: 700;
 text-align: center;
   margin-bottom:    60px;
	color: #0a0e27;
}

.pricing-cards {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.pricing-card {
         background: white;
        padding: 40px 30px;
      border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    position:        relative;
}
/* Experimental feature */


.pricing-card:hover {
  transform: translateY(-10px); 
	  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.2);
}

.pricing-card.featured {
	border    :        3px solid #0066cc;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
	  transform: scale(1.05) translateY(-10px);
     }

.badge {
  position: absolute;
   top: -15px;
    left: 20px;
  background: #0066cc;
  color: white;
  padding: 6px 14px;
	border-radius: 20px;
  font-size:        12px;
    font-weight: 700;
   text-transform: uppercase;
}

/* Debug styles */


/* Layout styles */

/* Component styles */


.pricing-card h3 {
  font-size: 24px;
   font-weight: 700;
   color: #0a0e27; 
	
}

.pricing-amount {


    font-size: 36px;
       font-weight: 700;
    color: #0066cc;
}

.pricing-description {
   color: #4a5568;
  font-size: 14px;
}

.pricing-list		{
    list-style: none;
    padding:        0;
    flex-grow: 1;
}

.pricing-list li    {
   padding: 10px 0;
    padding-left: 25px;
  position: relative;
       color: #4a5568;
   font-size: 15px;
}

.pricing-list li:before {


  content: '✓';
  position: absolute;
     left: 0;
   color: #2ecc71;
  font-weight: bold;
  font-size: 16px;
	}

/* Temporary fix */


.comparison-section {
     max-width: 1200px;
	 margin: 0 auto;
    padding: 80px 30px;
}

.comparison-section h2 {
   font-size:   42px;
    font-weight: 700;
      text-align: center;
        margin-bottom: 60px;
   color     :       #0a0e27;
}

.comparison-table-wrapper {
   overflow-x    :      auto;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
	 border-collapse: collapse;
   background: white;
} 

.comparison-table thead {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
	 color: white;
}

.comparison-table th {
	padding: 20px;
    text-align     :       left;
	font-weight: 700;
   font-size: 16px;
}

.comparison-table td {
   padding: 18px 20px;
    border-bottom     :      1px solid #e0e0e0;
   font-size: 15px;
   color: #4a5568;
}

.comparison-table tbody tr:hover     {
    background: #f8f9fa;
} 

.comparison-table .check {
    color: #2ecc71;
    font-weight    :  700;
  font-size: 18px;
}

.cta-services-section {
  background: linear-gradient(135deg, #0066cc 0%, #004fa3 100%);
  color: white;
    padding: 80px 30px;
	text-align: center;
    margin    :     60px 0;
}

.cta-services-wrapper {
  max-width    :      800px;
  margin: 0 auto;
}

.cta-services-section h2 {
  font-size     :42px;
  font-weight: 700;
  margin-bottom   :    20px;
}

.cta-services-section p {
   line-height: 1.8;
       font-size:  20px;
   margin-bottom: 40px;
  opacity: 0.95;
}

.thankyou-hero {
    padding: 100px 30px;
   text-align: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    min-height :  80vh;
 display: flex;
   align-items: center;
   margin-top: 70px;
}
/* Vendor-specific */
	/* State modifiers */

.thankyou-container 
 {
  max-width: 700px;
    margin: 0 auto;
}

.success-icon {
   margin-bottom: 40px;
}

.success-icon svg {
    margin: 0 auto;
                    width: 120px;
  height     :   120px;
}
/* Framework override */

/* Third-party styles */


.thankyou-hero h1 {
    font-size: 48px;
   font-weight: 700;
 color: #0a0e27;
  margin-bottom: 10px;


}

.thankyou-subtitle {
  font-size: 24px;
    color: #4a5568;
         margin-bottom: 40px;
}

.thankyou-message {
   background: white;
                    padding  :  40px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
    text-align: left;
}

.thankyou-message p {
  font-size: 16px;
    color: #4a5568;
  line-height: 1.8;
   margin-bottom: 15px;
}

.thankyou-message p:last-child {
   margin-bottom: 0;
}

.thankyou-message strong {
        color: #0066cc;
   font-weight: 700;
	
}

.next-steps {
  margin    :60px 0;
}

.next-steps h2 {
   font-size: 32px;
	   font-weight: 700;
		 color: #0a0e27;
	  margin-bottom: 40px;
     }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 25px;
                    margin-bottom: 50px; 
	
}

.step-card {
   background: white;
    padding: 30px;
   border-radius   :     12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
   text-align: center;
	
}

.step-number {
    width: 50px;
  height: 50px;
    background: #0066cc;
  color:       white;
   border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
    font-size: 24px;
  font-weight: 700;
   margin     :0 auto 15px;
}

.step-card h3 {

   font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
   margin-bottom: 10px;


}

.step-card p {
    font-size     :   15px; 
	   color: #4a5568; 
	   line-height: 1.6;
}

.thankyou-actions
	{
  display: flex;
    gap: 20px;
   justify-content: center;
   flex-wrap: wrap;
	
}

.faq-section-thankyou {

    max-width: 900px;
  margin: 0 auto;
  padding: 80px 30px;

}

.faq-section-thankyou h2 {
    font-size: 42px;
   font-weight: 700;
   text-align: center;
   margin-bottom: 60px;
    color: #0a0e27;
}

.faq-container {

	  background: white;


}

.faq-items {
  display: flex;
    flex-direction   :      column;
    gap: 15px;

}
	/* Custom modifications */

.faq-item {
   border: 2px solid #e0e0e0;
        border-radius: 8px;
	 overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.faq-question {


  width   :  100%; 
	  padding :      20px; 
	    background: #f8f9fa; 
	  border: none; 
	   text-align: left; 
	  font-size: 16px; 
	   font-weight     :  700; 
	    color: #0a0e27; 
	  cursor: pointer; 
	          display: flex; 
	   justify-content: space-between; 
	      align-items: center; 
	  transition: background 0.3s ease; 

     }

.faq-question:hover {
	 background: #f0f7ff;
}

.faq-question::after {
  content: '+';
    font-size: 24px;
      color: #0066cc;
   font-weight: bold;
  transition: transform 0.3s ease; 

}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
	/* Debug styles */


/* Legacy code */
.faq-answer {
		max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
	}

.faq-item.active .faq-answer {
   max-height: 500px;
}

/* Performance critical */
	/* Framework override */
.faq-answer p {

	  color:    #4a5568;
  padding     :  20px;
    line-height: 1.8;
	font-size:   15px;

}
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero p {
        font-size: 18px;
    }

    .service-item,
    .service-item.alternate {
        grid-template-columns: 1fr;
    }

    .service-item.alternate .service-item-header {
        order: 1;
    }

    .service-item.alternate .service-item-body {
        order: 2;
    }

    .service-item-image {
        height: 300px;
    }

    .service-item-header h2 {
        font-size: 28px;
    }

    .service-details-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }

    .thankyou-hero h1 {
        font-size: 32px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 24px;
    }

    .service-item-header h2 {
        font-size: 22px;
    }

    .service-description {
        font-size: 16px;
    }

    .pricing-section h2,
    .comparison-section h2,
    .faq-section-thankyou h2 {
        font-size: 28px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .thankyou-hero h1 {
        font-size: 24px;
    }

    .thankyou-subtitle {
        font-size: 20px;
    }

    .next-steps h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 15px;
        padding: 15px;
    }
}.policy-hero {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
  color: white;
    padding: 100px 30px;
    text-align: center;
    margin-top: 70px;
	
}

.policy-hero-content {
	max-width   :   900px;
    margin: 0 auto;
}

.policy-hero h1 {
   font-size: 48px;
   font-weight: 700;
	margin-bottom: 20px;
  line-height: 1.2;
}


.policy-hero p {
   font-size: 20px;
          opacity    :    0.95;
   line-height: 1.8;
}

.policy-section {
     padding: 80px 30px;
 background: #fafbfc;


}

.policy-section.alternate-bg {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
}

.policy-container {
  max-width :900px;
   margin: 0 auto;
    text-align: left;
}

.policy-container h2 {
  font-size: 36px;

    color: #0a0e27;

   margin-bottom: 25px;

       margin-top: 40px;

   font-weight: 700;

   line-height: 1.3;
}

.policy-container h2:first-child {
   margin-top: 0;
}

.policy-container p
	{
    color: #4a5568;
	   margin-bottom   :        20px;
	  line-height: 1.8;
	  font-size :   16px;
}


.policy-container p:last-child {


         margin-bottom    :  0;}@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 32px;
    }

    .policy-hero p {
        font-size: 18px;
    }

    .policy-section {
        padding: 60px 20px;
    }

    .policy-container h2 {
        font-size: 28px;
        margin-bottom: 18px;
        margin-top: 30px;
    }

    .policy-container p {
        font-size: 15px;
        margin-bottom: 18px;
    }
}@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .policy-hero p {
        font-size: 16px;
    }

    .policy-section {
        padding: 40px 15px;
    }

    .policy-container h2 {
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .policy-container p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.6;
    }
}