* {
    margin: 0;

	  padding   :     0;

	   box-sizing: border-box;
}

:root {
    --primary-color: #1a3a3a;
    --accent-color: #2ecc71;
    --accent-light: #27ae60;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {


  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);



}

.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position  :       sticky;
    top: 0;
   z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
    margin: 0 auto;
	 display   :       flex;
  justify-content: space-between;
    align-items : center;
   padding: 1rem 2rem;
}

.navbar-logo img   {
   height: 64px;
	    width: auto; 
	
}

.nav-menu {
     display: flex;
  list-style: none;
  gap: 2rem;



}

.nav-menu a    {
        text-decoration :     none;
  color: var(--text-color);
   font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.burger-menu {
    display: none;
   background: none;
   border: none;
   cursor: pointer;
  padding: 0.5rem;


}

.burger-menu img {
                    width: 28px; 
	    height: 28px;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--light-bg);
    }

    .burger-menu {
        display: block;
    }

    .navbar-container {
        padding: 1rem 1.5rem;
    }
}.hero-section {
       display: grid;
			grid-template-columns: 1fr 1fr;
   align-items: center;
   gap: 3rem;
    max-width: 1200px;
	margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-content h1     {
   font-size: 3.5rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
    line-height: 1.2; 

}

.hero-content p {


    font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;

}

.cta-button {
	  background-color: var(--accent-color);
	color     :    white;
    padding: 1rem 2.5rem;
    border:       none;
   border-radius: 50px;
    font-size: 1rem;
	font-weight  :  600;
   cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);}

.cta-button:hover     {
     background-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(46, 204, 113, 0.4);
}

.hero-image {
  position    :      relative;
}

.hero-image img  
  {
  width: 100%;
    border-radius: 15px;
  box-shadow: var(--shadow);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.services-overview {
  background-color: var(--light-bg);
   padding: 4rem 2rem;
  max-width: 1200px;
   margin: 0 auto;


}

.services-overview h2 {

	   font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 3rem;
   text-align: center;
	}

.services-grid    {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap  :        2rem;
}

.service-card {
  background-color: var(--white);
	 border-radius  :  12px;
   overflow: hidden;
  box-shadow: var(--shadow);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
      height: 200px;
      object-fit: cover;
}

.service-card h3 {
  padding  :       1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
  font-size: 1.3rem; 

}

.service-card p   {
  padding: 0 1.5rem 1.5rem;
  color :   #666;
    font-size: 0.95rem;
}

.webinar-section {
   display: grid;
      grid-template-columns: 1fr 1fr;
       align-items :    center;
     gap: 3rem;
     max-width: 1200px;
       margin: 0 auto;
       padding: 4rem 2rem;
}

.webinar-content h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.webinar-content p {
   color: #555;
  margin-bottom: 1.5rem;
   font-size :1.05rem;
}

.webinar-list {
    list-style   :   none;
}

.webinar-list li {
   padding    :   0.8rem 0;
   padding-left: 2rem;
      position: relative;
    color: #666;


}

.webinar-list li:before {
  content: "▸";
    position: absolute;
    left :       0;
  color: var(--accent-color);
    font-size: 1.5rem;
}

.webinar-image img {
	 width: 100%;
    border-radius: 15px;
  box-shadow: var(--shadow); 

}@media (max-width: 768px) {
    .webinar-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .webinar-content h2 {
        font-size: 1.8rem;
    }
}.coaching-approach {
  background-color: #f0f8f5;
                    padding: 4rem 2rem;
  max-width: 1200px;
  margin:       0 auto;
}

.coaching-approach h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
        margin-bottom     :       3rem;
  text-align: center;
}

.approach-grid  
  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap:       2rem;
}

.approach-card {
     background-color: var(--white);
  padding: 2rem;
	border-radius: 12px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
     }

.approach-card h3 {
  color: var(--primary-color);
   margin-bottom: 1rem;
    font-size: 1.2rem;
}

.approach-card p {
  color: #666;
    line-height: 1.6;
     }

.success-stories
	{
	    padding: 4rem 2rem;
  max-width  :  1200px;
  margin :    0 auto;
	}

.success-stories h2 {
	font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom     :    3rem;
   text-align: center;
}

.stories-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;


}

.story-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f8f5 100%);
	border-radius: 12px;
  transition: transform 0.3s ease;
}

.story-item:hover {
  transform: scale(1.05);
}

.story-item h3 {
   font-size: 1.8rem;
  color: var(--accent-color);
    margin-bottom :      0.5rem;
}

.story-item p {
	color: #666; 
	    font-size: 0.95rem;


}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f5f 100%);
	color: white;
   padding: 4rem 2rem;
   text-align: center;
}

.cta-wrapper {
    max-width: 800px;
      margin: 0 auto;
}

.cta-wrapper h2	{
	font-size   :        2.5rem;
   margin-bottom: 1rem;
}

.cta-wrapper p{
               font-size  :     1.1rem;
  margin-bottom: 2rem;
    opacity: 0.95;

}

.cta-button-large	{
  background-color: var(--accent-color);
   color: white;
   padding: 1.2rem 3rem;
	 border: none;
   border-radius: 50px;
   font-size: 1.1rem;
  font-weight     :     600;
    cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.cta-button-large:hover {
  background-color: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
}

.contact-section {


    max-width: 800px;
        margin  :        0 auto;
   padding: 4rem 2rem;
	}

.contact-section h2 {


       font-size: 2.2rem;
  color: var(--primary-color);
    margin-bottom: 2rem;
    text-align :     center;


}

.contact-form	{

  background-color: var(--light-bg);
         padding: 2.5rem;
               border-radius: 15px;
  box-shadow: var(--shadow);
	}

.form-group  
  {
         margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
   margin-bottom :  0.5rem;
  color: var(--text-color);
   font-weight: 500;

}

.form-group input,
.form-group select,
.form-group textarea   {

   width: 100%;
	 padding: 0.8rem;
    border     :  2px solid #e0e0e0;
   border-radius: 8px;
   font-family: inherit;
   font-size: 1rem;
    transition: border-color 0.3s ease;
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.2);
}

.submit-button
{
  width: 100%;
	   padding: 1rem;
	  background-color: var(--accent-color);
	    color: white;
	  border: none;
		 border-radius: 8px;
		font-size: 1rem;
		font-weight: 600;
	    cursor: pointer;
	     transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.footer {
  background-color: var(--primary-color);
  color: white;
    padding: 3rem 2rem 1rem;

}

.footer-container {
  max-width: 1200px;
   margin: 0 auto;
   display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap  :        2rem;
   margin-bottom    :      2rem;
	
}

.footer-logo-img{


   height: 86px;
    width: auto;
  filter: brightness(0) invert(1);}

.footer-info h3 {


   margin-bottom    :       1rem;
    font-size: 1.3rem;
}

.footer-info p
{
   margin-bottom: 0.5rem;
   opacity: 0.9; 
	
}

.footer-links h4 {
   margin-bottom: 1rem;
}

.footer-links ul {
   list-style   :        none;
}

.footer-links ul li {
	 margin-bottom: 0.5rem;
}

.footer-links a {
                    color: #bbb;
    text-decoration: none;
  transition:    color 0.3s ease;
	
}

.footer-links a:hover {
  color: var(--accent-color);
} 

.footer-bottom {
  max-width:        1200px;
   margin : 0 auto;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  opacity: 0.8;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        text-align: left;
    }
}.services-hero     {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f5f 100%);
  color: white;
  padding: 4rem 2rem;
   text-align   :      center;
}

.services-hero-content h1	{
     font-size: 3rem;
	   margin-bottom    :      1rem;

     }  

.services-hero-content p {
	font-size: 1.2rem; 
		 opacity: 0.95;
}

.main-services {
          padding   : 4rem 2rem;
   max-width: 1200px;
  margin: 0 auto;}

.service-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap:    3rem;
 align-items: center;
  background-color: var(--light-bg);
      padding: 2.5rem;
    border-radius     :       15px;
}

.service-featured-image img {
    width: 100%;
   border-radius: 12px;
  box-shadow: var(--shadow);
}

.service-featured-content h2 {


    font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;

} 

.service-featured-content p{

    color    :   #666;
   margin-bottom: 1.5rem;
    font-size: 1.05rem;
	}

.service-details h3 {
  color: var(--primary-color);
    margin-bottom: 1rem;
   font-size :     1.1rem;
}

.details-list {
    list-style: none;
 margin-bottom: 1.5rem;}

.details-list li {
      padding: 0.6rem 0;
   padding-left: 1.8rem;
       position: relative;
   color: #555;
}

.details-list li:before {

  content: "→";
   position: absolute;
   left: 0;
  color: var(--accent-color);
    font-weight: bold;
     }

.service-duration {
   background-color: white;
    padding :   1rem;
  border-left: 4px solid var(--accent-color);
   border-radius :5px;
}@media (max-width: 768px) {
    .service-featured {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-featured-content h2 {
        font-size: 1.6rem;
    }
}.services-grid-section {
	padding: 4rem 2rem;
   max-width: 1200px;
        margin: 0 auto;
  background-color: var(--light-bg);
}

.services-grid-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
  text-align: center;
}

.services-detailed-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	 gap: 2rem;
}

.service-detailed-card {
  background-color: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: var(--shadow);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detailed-card:hover  
  {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	}

.service-detailed-card img {
    width: 100%;
   height    :   220px;
   object-fit: cover;
}

.card-content {
   padding: 2rem;
}



.card-content h3
	{
  color: var(--primary-color);
      margin-bottom: 1rem;
     font-size: 1.3rem;
}

.card-content p {
   color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.card-features
	{
  background-color: var(--light-bg);
    padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card-features p {
   margin-bottom: 0.8rem;
  color: var(--primary-color);
       font-weight: 600;
}

.card-features ul {
   list-style: none;
}


.card-features li {
   padding: 0.4rem 0;
        padding-left: 1.5rem;
  position     :        relative;
	color     :        #555;
               font-size: 0.9rem;
}

.card-features li:before{
  content: "•";
   position: absolute;
   left: 0;
  color: var(--accent-color);
    font-weight: bold;
}

.price-info {
    font-size   :0.9rem;
  color: var(--accent-color);
  font-weight  :  600;

}

.webinars-services {
    padding: 4rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
	
}

.webinars-services h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
   text-align: center;


}

.webinars-content {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem; 
	}

.webinar-type {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f8f5 100%);
   padding: 2.5rem;
   border-radius   :   12px;
  border-left: 5px solid var(--accent-color);
}

.webinar-type h3 {
  color: var(--primary-color);
  margin-bottom    :       1rem;
  font-size:       1.3rem; 
	
}

.webinar-type p {
   color: #666;
  margin-bottom     :     0.8rem; 
	
}

.webinar-type p strong  {
  color: var(--primary-color);
}

.pricing-comparison {
      padding   :        4rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
  background-color: var(--light-bg);
     }

.pricing-comparison h2	{
   font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
     }

.pricing-table {
    width: 100%;
	overflow-x: auto;
}

.services-table {
    width   : 100%;
  border-collapse: collapse;
  background-color: white;
   border-radius: 12px;
  box-shadow: var(--shadow);
   overflow: hidden;
	
}

.services-table thead {
  background-color: var(--primary-color);
   color: white;
}

.services-table th {
       text-align: left;
  font-weight: 600;
	padding: 1.5rem;
}

.services-table td {
    padding : 1.5rem;
  border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.services-table tbody tr:hover {
    background-color: #f8f9fa;
}

.services-table tbody tr:last-child td {
    border-bottom: none;


}

@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.85rem;
    }

    .services-table th,
    .services-table td {
        padding: 1rem 0.8rem;
    }
}.process-section {
   padding: 4rem 2rem;
    max-width: 1200px;
  margin: 0 auto;
}

.process-section h2 {
    font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 3rem;
  text-align   :  center;
}

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
   position: relative;
}

.process-steps:before


{
  content: "";
   position: absolute;
   top: 40px;
   left: 10%;
    right   :      10%;
    height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color) 50%, transparent 50%);
    z-index:     0;
  display: none; 

}@media (min-width: 769px) {
    .process-steps:before {
        display: block;
    }
}.step-item	{
  background-color: var(--light-bg);
    padding: 2rem;
     border-radius: 12px;
  text-align: center;
    position: relative;
  z-index: 1;


}

.step-number {

	    width: 50px;
   height: 50px;
  background-color: var(--accent-color);
   color: white;
 border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
   margin: -1rem auto 1.5rem;
    font-size :      1.5rem;
  font-weight: 700;

}

.step-item h3 {
  color: var(--primary-color);
    margin-bottom: 0.8rem;
   font-size: 1.1rem;
}

.step-item p {
  color: #666;
   font-size: 0.95rem;
     }

.thank-you-section  {
  max-width: 800px;
  margin: 0 auto;
    padding: 4rem 2rem;
  text-align: center;
}

.thank-you-container {
  background-color: var(--light-bg);
  padding: 3rem 2rem;
   border-radius    :    15px;
  box-shadow: var(--shadow);
}

.success-checkmark {
    margin-bottom: 2rem;
}

.success-checkmark img {
  width     :       80px;
   height: 80px;
  filter: drop-shadow(0 2px 8px rgba(46, 204, 113, 0.3));


}

.thank-you-section h1 {
  font-size: 2.8rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
}

.thank-you-main-text {
	  font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
     }

.next-steps 
 {
  background-color: white;
   padding: 2.5rem;
  border-radius: 12px;
 -webkit-border-radius     :   12px;
  -moz-border-radius: 12px;
   margin-bottom: 2rem;
}

.next-steps h2 {
   font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}


.steps-list {
  display :    flex;
   flex-direction: column;
    gap   :        1.5rem;
} 

.next-step {
   display: flex;
   gap: 1.5rem;
  text-align: left;
}

.step-icon {

  flex-shrink: 0;
  width: 45px;
    height: 45px;
  background-color: var(--accent-color);
  color: white;
    border-radius: 50%;
    display: flex;
	 align-items :        center;
	justify-content: center;
               font-weight: 700;
	font-size: 1.2rem;

}

/* Performance critical */

.step-content h3 {
     color: var(--primary-color);
          margin-bottom    :      0.5rem;
   font-size: 1.1rem;
	}

.step-content p {
   color: #666;
   font-size: 0.95rem;
}

.thank-you-info {


	background-color     :    #f0f8f5;
   padding     : 2rem;
  border-radius: 12px;
    margin-bottom: 2rem;
  border-left: 5px solid var(--accent-color);}

.thank-you-info p {

   color: #666;
   margin-bottom: 0.8rem;
	
     }

.contact-info  
  {
  color: var(--primary-color);
    font-weight: 600;
}

.return-actions {
    gap: 1rem;
    justify-content: center;
       display: flex;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {

	      padding: 1rem 2rem;
  border-radius: 50px;
   text-decoration  : none;
   font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
     }  

.btn-primary {

  background-color: var(--accent-color);
    color     :      white;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
     }

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(46, 204, 113, 0.4);
}

.btn-secondary {
   background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--light-bg);
}

.other-services-info {
  padding :     4rem 2rem;
    max-width: 1200px;
  margin:     0 auto;
  background-color: var(--light-bg);
}

.other-services-info h2 {

	   font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
       text-align   :center;



}

.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-preview-card {
  background-color: white;
   padding    : 2rem;
   border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent-color);
  transition   :     transform 0.3s ease;
}

.service-preview-card:hover {
  transform: translateY(-5px);
  -moz-transform: translateY(-5px);
}

/* Generated styles */


	/* Vendor-specific */
.service-preview-card h3 {
  color: var(--primary-color);
   margin-bottom: 0.8rem;
   font-size: 1.1rem;
} 

.service-preview-card p {
    color: #666; 
	     font-size: 0.95rem;
	
}
@media (max-width: 768px) {
    .thank-you-section {
        padding: 2rem 1.5rem;
    }

    .thank-you-container {
        padding: 2rem 1.5rem;
    }

    .thank-you-section h1 {
        font-size: 1.8rem;
    }

    .return-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.policy-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f5f 100%);
	color: white;
    padding: 3rem 2rem;
   text-align: center;
}

.policy-hero-content h1 {
		 font-size: 2.8rem;
   margin-bottom: 1rem;
   font-weight: 700;
}

.policy-hero-content p {
  font-size: 1.1rem;
   opacity: 0.95;
}

.policy-section {
	        padding    :    4rem 2rem;
  background-color: var(--light-bg);
     }

.policy-container {
     max-width: 850px;
   margin: 0 auto;
    text-align  : left;


}  

.policy-container h2 {
  font-size: 2rem;
  color: var(--primary-color);
    margin-top: 2.5rem;
  margin-bottom: 1.5rem;
		font-weight: 700;
}

.policy-container h2:first-child {
    margin-top: 0;
}

.policy-container h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
   margin-top: 1.8rem;
   margin-bottom: 1rem;
	 font-weight: 600;
}

.policy-container p {
  color  :        #555; 
   margin-bottom: 1.5rem; 
	line-height: 1.8; 
  font-size: 1rem;
}

.policy-container p:last-child {
    margin-bottom: 0; 

}@media (max-width: 768px) {
    .policy-hero {
        padding: 2rem 1.5rem;
    }

    .policy-hero-content h1 {
        font-size: 1.8rem;
    }

    .policy-hero-content p {
        font-size: 1rem;
    }

    .policy-section {
        padding: 2.5rem 1.5rem;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .policy-container h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}