* {
                    margin: 0;
	 padding: 0;
    box-sizing: border-box;
}

html {

	  scroll-behavior: smooth;
	}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
  background-color: #ffffff;
}  

.navbar {
   background-color: #ffffff;
   padding :   1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   position: sticky;
    top: 0;
   z-index: 100;
}

.nav-container {
   max-width: 1200px; 
	   margin: 0 auto; 
	  padding :  0 2rem; 
	   display: flex; 
			justify-content: space-between; 
	   align-items  :  center;
}

.nav-brand img {
   height: 64px;

	 width: auto;
}

.menu-toggle {
   display: none;
   flex-direction: column;
         background: none;
	border: none;
    cursor: pointer;
   gap: 6px; 



}

.menu-toggle span{
    width  : 25px;
    height: 3px;
  background-color: #2c3e50;
   border-radius: 2px;
   transition: all 0.3s ease;
} 

.nav-links {
    display: flex;
  list-style    :        none;
	 gap: 2rem; 


}  

.nav-link {
	text-decoration: none;
	 color: #2c3e50;
  font-weight :    500;
   transition: color 0.3s ease;
   padding     :      0.5rem 1rem;
}

.nav-link:hover {
        color: #3498db;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #ecf0f1;
    }
}.hero-section {
   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: 2.8rem;
     color: #1a252f;
    margin-bottom:        1.5rem;
  line-height: 1.2;
}

.hero-content p {
   font-size     :       1.1rem;
  color: #555;
	margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
	 display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
   padding: 1rem 2.5rem;
    border-radius :     8px;
  text-decoration: none;
	font-weight  :   600;
  transition: all 0.3s ease;
   cursor: pointer;
    border: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);

}

.hero-image img {
   width:     100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	
     }@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.section-wrapper{
	   max-width    :   1200px;
          margin: 0 auto;
    padding     :     4rem 2rem;

}

.section-wrapper.reverse {
	    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;


}
	/* Production ready */


/* Production ready */
.section-wrapper h2 {
   font-size: 2.2rem;
  color: #1a252f;
   margin-bottom: 1rem;
  text-align     :center;
}

.section-intro {
  text-align: center;
   color: #666;
    font-size: 1.1rem;
  margin-bottom: 3rem;
}

.why-section {
   background-color: #f8fafb;
}
	/* State modifiers */
/* State modifiers */


.why-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  background: white;
  padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.why-card h3
	{
  font-size: 1.4rem;
	color: #2c3e50;
  margin-bottom: 1rem;
}

.why-card p {

   color: #666;
   line-height: 1.8;}

.courses-section {
   background-color: #ffffff;
}

.courses-container	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.course-card {

    background: white;
   border-radius:12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;


}

/* Responsive design */

.course-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	} 

.course-card img {

    width: 100%;
  height: 200px;
  object-fit   :      cover;
   display     : block; 
	
}

.course-content {
	 padding: 2rem;
}

.course-content h3 {
   font-size: 1.3rem;
      color: #2c3e50;
     margin-bottom: 1rem;
}

/* Hack for old browsers */


.course-content p {
               color: #666;
  line-height: 1.8;
}

.seminars-section {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

/* Third-party styles */
	/* FIXME: IE11 compatibility */


/* Framework override */
.seminars-image		{
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Debug styles */

.seminars-content h2 {
   text-align: left;
  margin-bottom   :     1.5rem;
}

/* Auto-generated CSS */



/* Responsive design */



/* Legacy code */


.seminars-content p {

    color :       #2c3e50;
    font-size   :   1.05rem;
    margin-bottom: 2rem;
   line-height: 1.8; 


}

.seminars-list {
   list-style: none;
}

.seminars-list li {

   color: #2c3e50;
	padding: 0.75rem 0;
          padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
	}

.seminars-list li:before {
  content: '▹';
   position: absolute;
   left: 0;
    color:       #3498db;
	 font-size    :   1.5rem;
}
@media (max-width: 768px) {
    .section-wrapper.reverse {
        grid-template-columns: 1fr;
    }

    .seminars-image {
        order: -1;
    }
}.coaching-section {
       background-color   :#f8fafb;
	}



.coaching-benefits {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    margin-top: 2.5rem;
	}

.benefit-item {
    background: white;
  padding: 2rem;
	border-radius: 10px;
   border-left     :       4px solid #3498db;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item h3 {
  font-size: 1.2rem;
         color: #2c3e50;
   margin-bottom: 1rem;

}

.benefit-item p {
	    color:      #666;
   line-height: 1.8;


}

.testimonials-section {
    background-color: #ffffff;
     }

.testimonials-grid {
   display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  margin-top: 2rem;
	


}

.testimonial-card {
  padding: 2rem;
    border-top: 3px solid #3498db;
   border-radius: 10px;
  background: #f8fafb;
}

.testimonial-text {
   color: #2c3e50;
  font-style: italic;
               margin-bottom: 1rem;
  line-height     :       1.8;
}

.testimonial-author {
   font-style: normal;
    color: #7f8c8d;
   font-weight: 600;
}

.cta-section  
  {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   padding :       4rem 2rem;
}

.cta-wrapper {
  max-width    :  1200px;
   margin: 0 auto;
   text-align: center;
}

.cta-wrapper h2 {
    color  :       white;
   font-size: 2.2rem;
   margin-bottom  :      1rem;
}

.cta-wrapper p    {
  color: rgba(255, 255, 255, 0.9);
  font-size    :    1.1rem;
    margin-bottom    :2rem;
     }

.cta-button-primary {
   display: inline-block;
    background-color: white;
   color: #2980b9;
  padding: 1rem 2.5rem;
  border-radius: 8px;
   text-decoration: none;
   font-weight  :       700;
  transition :       all 0.3s ease;
  cursor: pointer;
}

.cta-button-primary:hover  {
  transform: translateY(-2px); 
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
	
}

.contact-section {
  background-color: #f8fafb;
}

.contact-container {
  display:       grid;

   grid-template-columns: 1fr 1fr;

    gap: 3rem;

  margin-top: 2rem;
}

.contact-info h3 {
   font-size   :     1.3rem;
   color: #2c3e50;
   margin-bottom  : 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;

   color: #555;

               line-height:        1.8;
}

.contact-form {

  background: white;
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width     : 100%;
   padding: 0.75rem;
                    border  :        2px solid #ecf0f1;
  border-radius: 6px;
	 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: #3498db; 

}



.form-group textarea


{
   resize: vertical;

}

.submit-button {
     width: 100%;
    padding: 0.85rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color   :     white;
  border     :       none;
		 border-radius:       6px;
  font-weight: 600;
   font-size: 1rem;
  cursor: pointer;
  transition    :all 0.3s ease;
	}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.3);
}@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}.footer {
          color: white;
   background-color: #2c3e50;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
    padding: 3rem 2rem;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap   :  2rem;
}

.footer-brand img {
  margin-bottom: 1rem;
    height: 86px;
	width: auto; 
	
}

.footer-info h3,
.footer-nav h3  {
    font-size: 1.2rem;
	margin-bottom: 1rem;
}

.footer-info p,
.footer-nav a
	{
  color: rgba(255, 255, 255, 0.8);
   margin-bottom: 0.5rem;
   line-height: 1.8; 

}

.footer-nav ul {
    list-style: none;
}

.footer-nav a {
    text-decoration: none;
    transition:  color 0.3s ease;
}

.footer-nav a:hover {
    color: #3498db;
}

.footer-bottom {
   text-align     :      center; 
    padding: 2rem; 
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
  color: rgba(255, 255, 255, 0.6); 
  background-color: #1a252f;
}

@media (max-width: 768px) {
    .section-wrapper {
        padding: 2rem 1rem;
    }

    .section-wrapper h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .courses-container,
    .why-grid,
    .coaching-benefits,
    .testimonials-grid {
        gap: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
   padding: 5rem 2rem;
    text-align  :   center;
}

.services-hero-content h1 {
      font-size: 2.8rem;
		 margin-bottom: 1rem;
  line-height: 1.2;

}

.services-hero-content p {
  font-size  :  1.2rem;
    opacity     :  0.95;
}

.services-grid-section {
    background-color     :    #ffffff;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
   gap: 2.5rem;
   margin-top   :  3rem;
}

.service-card {
   background: white;
     border-radius:   12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  display: flex;
                    flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card-header {
         padding: 1.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
   display: flex;
  justify-content :    space-between;
  align-items:  center;
}

.service-card-header h3 {
   margin: 0;
   font-size    :      1.3rem;
}

.service-badge {
  background-color: rgba(255, 255, 255, 0.2);
   padding: 0.4rem 0.8rem;
  border-radius: 20px;
    font-size: 0.85rem;
  font-weight     :      600;
}

.service-card img{
   width: 100%;
  height  :   200px;
   object-fit: cover;
          display: block;
}

.service-card-body {
    padding: 2rem;
   flex-grow: 1;
  display: flex;
  flex-direction: column;
}



.service-description {
  color: #555;
         margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
  list-style: none;
    margin: 0;
    padding: 0;
 flex-grow: 1;
}

.service-features li{

	    padding: 0.6rem 0;
   padding-left     :1.5rem;
   position  :        relative;
  color: #666;
      font-size: 0.95rem;
     }

.service-features li:before {
  content: '▹';
  position: absolute;
   left: 0;
    color: #3498db;
  font-size: 1.2rem;
}

.pricing-comparison-section {
    background-color: #f8fafb;
} 

.pricing-table {

		 overflow-x: auto;
      margin-top: 2rem;
     }

table {
        width: 100%;
   border-collapse: collapse;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
    overflow: hidden;
} 

thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
      color: white;
}

th {
    padding: 1.25rem;
  text-align: left;
   font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
	}  

th:last-child {
	  border-right: none;
	}

td {
          padding: 1.25rem;
  border-bottom: 1px solid #ecf0f1;
    border-right: 1px solid #ecf0f1;
}


td:last-child {
	 border-right: none;
}

tbody tr:last-child td {

	   border-bottom:   none;

}

tbody tr:hover {
   background-color: #f8fafb;
}

td.center {

  text-align: center;
    font-weight: 500;
   color     : #3498db;
	}

.process-section {
  background-color: #ffffff;
}

.process-steps {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
   margin-top: 3rem;

}

.process-step {
  text-align     : center;
    padding: 2rem;
    border-radius: 10px;
  background: linear-gradient(135deg, #f8fafb 0%, #ecf0f1 100%);
         transition: all 0.3s ease;
}

.process-step:hover
{

  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
}

.step-number {

	  width: 60px;
                    height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   border-radius: 50%;
    display: flex;
   align-items    :    center;
   justify-content  : center;
    font-size: 1.8rem;
    font-weight: 700;
   margin :   0 auto 1rem; 
	
	}

.process-step h3 {
   font-size: 1.2rem;
  color :#2c3e50;
  margin-bottom: 1rem;
}

.process-step p {
  color: #666;
   line-height: 1.8;
    font-size: 0.95rem;
}

.faq-section {
    background-color: #f8fafb;
}

.faq-container  
  {
   display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap: 2rem;
 margin-top: 2rem;
}

.faq-item {
   background: white;
    padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   border-left: 4px solid #3498db;
   transition  :  all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
   color: #2c3e50;
    font-size: 1.1rem;
   margin-bottom: 1rem;
    cursor    : pointer;
}

.faq-answer {
      line-height: 1.8;
    color: #666;
   margin: 0;

}

.cta-services-section {

	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 4rem 2rem;
}

.cta-services-wrapper {
    max-width: 1200px;
   margin: 0 auto;
   text-align    :center;
}

.cta-services-wrapper h2 {
	    color     :        white;
	 font-size: 2.2rem;
    margin-bottom:        1rem;


	}

.cta-services-wrapper p {
  color: rgba(255, 255, 255, 0.9);
   font-size :  1.1rem;
	 margin-bottom: 2rem;
}

.thankyou-section {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
  min-height: 60vh;
   display: flex;
   align-items: center;
	justify-content: center;
  padding: 2rem;
}

.thankyou-container {
	background     :   white;
   padding    :    3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
   text-align: center;


}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
                    border-radius: 50%;
    display: flex;
    align-items: center;
         justify-content  : center;
  font-size: 3rem;
  color: white;
    margin: 0 auto 2rem;
    font-weight: 700;
}

.thankyou-section h1 {
  font-size   :     2.4rem;
   color: #2c3e50;
      margin-bottom: 0.5rem;
}

.thankyou-subtitle {
   font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #7f8c8d;
}

.thankyou-content {
   color     :    #555;
   margin-bottom: 2.5rem;
    line-height:1.8;
}

.thankyou-content p {
         margin-bottom   :      1rem; 

}

.next-steps {
   background: #f8fafb;
 padding: 1.5rem;
   border-radius: 10px;
   margin-bottom: 2rem;
         text-align: left;
}

.next-steps h2 {
  font-size: 1.3rem;
	color: #2c3e50;
  text-align: center;
    margin-bottom     :     1rem;
}

.steps-list {
    list-style :   none;
  margin  :     0;
		 padding: 0;
}

.steps-list li		{
   padding: 0.6rem 0;
   padding-left: 1.5rem;
  position: relative;
   color: #555;
}

.steps-list li:before {

  content: '✓';
          position    :       absolute;
    left: 0;
  color: #2ecc71;
   font-weight: 700;

}

.thankyou-actions

{
        display: flex;
   gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.action-button {
       flex: 1;
   min-width: 150px;
  padding: 0.9rem 1.5rem;
        border-radius: 8px;
        text-decoration    :none;
  font-weight: 600;
    transition  :all 0.3s ease;
    border: 2px solid;
	 display: inline-block;
}

.action-button.primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
  border-color     :    #2980b9; 
	
}

.action-button.primary:hover {
	  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.3);
}

.action-button.secondary {
    background: white; 
	    color: #3498db; 
	   border-color: #3498db;
}

.action-button.secondary:hover     {
   background: #f8fafb;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.contact-reminder
	{


  background: #e8f4f8;
  padding: 1.5rem;
  border-radius: 8px;
		 border-left: 4px solid #3498db;

}

.contact-reminder p {
    margin: 0.5rem 0;
    color: #2c3e50;
}

.benefits-reminder-section

{
    background-color: #ffffff;
}

.benefits-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap    :       2rem;
  margin-top: 2rem;
}

.benefit-card {
    background: #f8fafb;
  padding: 2rem;
   border-radius: 10px;
    border-top: 4px solid #3498db;
}

.benefit-card h3 {
  font-size    :1.2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
  line-height: 1.8; 

	}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.75rem;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        min-width: auto;
    }

    .pricing-table {
        font-size: 0.85rem;
    }

    .process-steps {
        gap: 1.5rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-card-header h3 {
        font-size: 1.1rem;
    }

    .thankyou-container {
        padding: 1.5rem 1rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        gap: 0.5rem;
    }
}.policy-section {
   padding: 80px 2rem;
  background: #f8f9fa;
    min-height     :       70vh;
}

.policy-container {
    max-width: 900px;
	margin: 0 auto;
    text-align   :  left;
  background     :     white;
	padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	
}

.policy-container h1 {
	line-height: 1.2;
   font-size: 2.8rem;
	color: #1a252f;
    margin-bottom: 2rem;
} 

.policy-container h2 {
	 font-size :      1.6rem;
   color: #2c3e50;
    margin-bottom: 1.2rem;
	margin-top    :      2rem;
    font-weight: 700;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.75rem;
}  

.policy-container p {
	color: #555;
	margin-bottom :        1.5rem;
   line-height: 1.85;
         font-size    :      1.05rem;
}

.policy-container p:last-child {
    margin-bottom: 0;
}
@media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-container h1 {
        font-size: 2.4rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1.5rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 1rem;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.2rem;
    }
}.policy-container    {


  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);

}

.policy-container h2 {
  background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
                    background-clip: text;
    border-bottom: 2px solid #3498db;
}@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policy-section {
        padding: 0;
        background: white;
        min-height: auto;
    }

    .policy-container {
        box-shadow: none;
        padding: 0;
        max-width: 100%;
    }

    .policy-container h1,
    .policy-container h2 {
        page-break-after: avoid;
    }

    .policy-container p {
        page-break-inside: avoid;
    }
}