* {
   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;
}

.navbar {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 1rem 0;
	 position :    sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container
	{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
      height: 45px;
  filter: brightness(0) invert(1);}  

.nav-menu {
  display: flex;
  list-style     :   none;
   gap: 2rem;
    align-items: center;
     }

.nav-link {
   color: white;
    text-decoration: none;
	 font-weight: 500;
   transition:    all 0.3s ease;
   position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
	 left     :   0;
  width: 0;
   height: 2px;
   background: #64b5f6;
    transition:      width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
    display: none;
   flex-direction: column;
  cursor: pointer;
   gap: 6px;
}

.hamburger span{
  width: 25px; 
	          height    :       3px; 
	  background: white; 
	    border-radius: 2px; 
	  transition: all 0.3s ease;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :    white;
  padding :    6rem 2rem;
  display    : flex;
    align-items: center;
    justify-content: space-between;
 gap: 4rem;
}

.hero-content {
   flex: 1;
	
}

.hero-content h1 {

	font-size: 2.8rem;
   margin-bottom: 1.5rem;
    line-height: 1.2;
  font-weight: 700;

}

.hero-content p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
   opacity: 0.95;
  line-height: 1.8;
} 

.cta-button {
    display: inline-block;

  background: #ff6b6b;

   color    :      white;

       padding: 1rem 2.5rem;

    border-radius: 50px;

   text-decoration: none;

  font-weight: 600;

  transition: all 0.3s ease;

  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover    {
   background :        #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);



}

.hero-image {
    flex: 1;
}

.hero-image img {
   width: 100%;
   border-radius  :        15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}.container {
	 max-width: 1200px;
	 margin: 0 auto;
    padding: 0 2rem;
}

.services-preview    {
   padding: 6rem 2rem;
	background: white;
}

.services-preview h2 {
	font-size: 2.5rem;
   text-align: center;
    margin-bottom: 1rem;
	color: #1a237e;
}

.section-subtitle {

	    text-align: center;
	color: #666;
	font-size: 1.1rem;
      margin-bottom: 4rem;


}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
   border-radius: 12px;
  transition: all 0.3s ease;
    border-left: 4px solid transparent;
	
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 border-left-color: #667eea;


}

.service-icon {
   width: 60px;
    height: 60px;
   margin-bottom   : 1.5rem;
}

.service-icon img {
  width: 100%;
    height :       100%;
  filter: drop-shadow(0 2px 5px rgba(102, 126, 234, 0.3));
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
    color :#1a237e;
}

.service-card p {
   color: #555;
    line-height  :1.7;
}

.featured-training,
.featured-strategy,
.featured-coaching,
.featured-mentoring {
     padding   :      5rem 2rem;

}


.featured-training {
  background: linear-gradient(to right, #f0f4ff, white);
}

.featured-strategy {
  background: linear-gradient(to right, white, #f0f4ff);
}

.featured-coaching  
  {
  background: linear-gradient(to right, #fff5f0, white);
}



.featured-mentoring  
  {
  background: linear-gradient(to right, white, #f0fff5);
}

.training-item,
.strategy-item,
.coaching-item,
.mentoring-item    {
    max-width: 1200px;
  margin: 0 auto;
          display: flex;
   align-items: center;
    gap: 4rem;
}

.training-item img,
.strategy-item img,
.coaching-item img,
.mentoring-item img	{
    flex: 1;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.training-content,
.strategy-content,
.coaching-content,
.mentoring-content


{
   flex: 1;
}

.training-item h3,
.strategy-item h3,
.coaching-item h3,
.mentoring-item h3 {
    font-size    :       2rem;
		 margin-bottom: 1.5rem;
    color: #1a237e;
}

.training-item p,
.strategy-item p,
.coaching-item p,
.mentoring-item p {
  font-size:      1rem;
   color: #555;
  margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-button {
   display: inline-block;
    background: #667eea;
  color   :     white;
    padding: 0.8rem 2rem;
   border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
}

.link-button:hover {
                    background: #764ba2;
  transform: translateX(5px);
     }@media (max-width: 768px) {
    .training-item,
    .strategy-item,
    .coaching-item,
    .mentoring-item {
        flex-direction: column;
        gap: 2rem;
    }

    .training-item h3,
    .strategy-item h3,
    .coaching-item h3,
    .mentoring-item h3 {
        font-size: 1.5rem;
    }
}.cta-section {
  background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
    color: white;
   padding : 5rem 2rem;
   text-align:      center;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-wrapper p {
         font-size: 1.1rem;
   margin-bottom :       2.5rem;
    opacity: 0.95;
   max-width: 600px;
    margin-left: auto;
   margin-right    :   auto;
}

.cta-button-large {

    display: inline-block;
               -moz-border-radius: 50px;
    background: white;
	color: #764ba2;
    -webkit-border-radius: 50px;
    padding  :  1.1rem 3rem;
    border-radius  :      50px;
    text-decoration: none;
         font-weight: 700;
   transition: all 0.3s ease;
 -webkit-transition  :      all 0.3s ease;
               font-size: 1.05rem;
     }

.cta-button-large:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 6rem 2rem;
   background     : white;
}

.contact-section h2 {
    text-align:   center;
   font-size   :   2.5rem;
    margin-bottom  :   1rem;
	color: #1a237e;
}

.contact-wrapper {
       max-width: 1200px;
    margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  margin-top: 3rem;}

.contact-form
	{
    -moz-border-radius   : 12px;
   background:   #f8f9fa;
       -webkit-border-radius: 12px;
  padding: 2.5rem;
   border-radius: 12px;
}

.form-group {
   margin-bottom: 1.5rem; 
	
}

.form-group label {
  display: block;
                    margin-bottom     :     0.5rem;
          font-weight: 600;
		color: #1a237e;
}

.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: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
       outline: none;

   border-color: #667eea;

  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	}

.submit-button {
	        width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
        border: none;
   border-radius: 8px;
    font-weight: 700;
                    font-size: 1rem;
          cursor: pointer;
  transition: all 0.3s ease;


}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.contact-info    {
    display: flex;
  flex-direction   :     column;
	 gap: 2rem;
}

.info-block 
 {
    background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.info-block h3 {
	   color: #1a237e;
    margin-bottom: 0.8rem;
  font-size:   1.2rem;
}

.info-block p {
    color: #555;
 line-height: 1.8;
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.footer {
  background: #1a237e;
  color: white;
  padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container
	{


   max-width     :       1200px;
  margin: 0 auto;

}

.footer-logo {

  margin-bottom: 2rem;

}

.footer-logo-img {
	 height: 50px;
  filter: brightness(0) invert(1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
               gap: 2rem;
  margin-bottom: 3rem;


}

.footer-section h4  
  {
   font-size:        1.1rem;
    margin-bottom: 1rem;
	color: #64b5f6;
}

.footer-section ul {

	    list-style: none;}

.footer-section ul li {
   margin-bottom: 0.8rem; 
	
}

.footer-section a {


	color: #b0bec5;
     text-decoration: none;
  transition: color 0.3s ease;}

.footer-section a:hover {
   color: #64b5f6;
     }

.footer-section p {
  color: #b0bec5;
         line-height: 1.8;
	 margin-bottom: 0.8rem; 
	
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
    text-align: center;
     color: #90caf9;


}@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services-preview {
        padding: 3rem 1.5rem;
    }

    .featured-training,
    .featured-strategy,
    .featured-coaching,
    .featured-mentoring {
        padding: 3rem 1.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .footer {
        padding: 2rem 1.5rem 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
   color: white;
   padding: 5rem 2rem;
                    text-align: center;
}

.services-hero-content h1 {

	          font-size: 2.8rem;
   margin-bottom: 1rem;
        font-weight    :      700;
     }

.services-hero-content p {
      font-size: 1.1rem;
  opacity: 0.95;
   max-width: 700px;
               margin: 0 auto;
     }

.services-detailed {
     padding: 6rem 2rem; 
		background: white;


}

.service-detail-card 
 {
       margin-bottom: 5rem; 
    background: #f8f9fa; 
     border-radius    :       12px; 
  overflow: hidden; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); 
    transition: all 0.3s ease;
}  

.service-detail-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-header{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
 padding: 2rem;
}

.service-detail-header h2 {
  font-size: 2rem;
     margin: 0;
}



.service-detail-body    {
   display: flex;
    padding: 3rem;
    gap: 2rem;
    align-items: center;
}

.service-detail-body img    {
   flex: 1;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-detail-text	{

	    flex: 1;


}

.service-detail-text p {
  font-size: 1rem;
    margin-bottom:       1.5rem;
    line-height: 1.8;
  color: #555;
}

.service-detail-text h3 {
	color: #1a237e;
 margin-top: 1.5rem;
	 margin-bottom: 1rem;
	font-size  :      1.3rem;
}

.service-list {


    list-style    :      none;
    padding: 0;
      margin: 1rem 0 1.5rem 0;
	}

.service-list li {
                    color :   #555;
         padding  :    0.5rem 0 0.5rem 2rem;
  position: relative;
   line-height: 1.6;
}



.service-list li::before     {

  content: '✓';
  position: absolute;
  left  :     0;
   color: #667eea;
 font-weight: bold;
    font-size: 1.2rem;}@media (max-width: 992px) {
    .service-detail-body {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-detail-body img {
        order: -1;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }
}.services-comparison {
  padding: 6rem 2rem;
  background: linear-gradient(to right, #f0f4ff, white);
}

.services-comparison h2 {
   text-align:   center;
  font-size: 2.5rem;
    color     :       #1a237e;
    margin-bottom: 3rem;
}

.comparison-table {
 max-width   :     1200px;
     margin: 0 auto;
    overflow-x: auto;
}

table {
   width: 100%;
    border-collapse: collapse;
    background     :    white;
	 border-radius: 8px;
   overflow     :        hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}


th {
    padding: 1.5rem;
    text-align: left;
	 font-weight :600;
   text-transform: uppercase;
  font-size    :     0.9rem;
   letter-spacing: 0.5px; 
	
}

td {
  color: #555;
    padding    :  1.2rem 1.5rem;
                    border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
	background    :#f0f4ff;
}

tbody tr:last-child td {


  border-bottom: none;
	}@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.8rem;
    }
}.services-faq {
  padding: 6rem 2rem;
    background: white;
	
	} 

.services-faq h2 {
   text-align: center;
   font-size: 2.5rem;
   color: #1a237e;
   margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
         padding: 2rem;
   border-radius: 12px;
    border-left :     4px solid #667eea;
         transition: all 0.3s ease;
}

.faq-item:hover	{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left-color: #764ba2;
}

.faq-item h3 {
     color: #1a237e;
	margin-bottom: 1rem;
	font-size: 1.1rem;

     }

.faq-item p {
			color:     #555;
	line-height: 1.7;

}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
   padding: 5rem 2rem;
    text-align: center;
}

.cta-inner h2		{
    font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-inner p {
       font-size: 1.1rem;
	margin-bottom: 2rem;
                    opacity: 0.95;

}

.thank-you-section {
    padding: 6rem 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff5f0 100%);
    min-height: 80vh;
  display: flex;
  align-items: center;
         justify-content: center;
}

.thank-you-container {
   max-width :      700px;
      text-align: center;
	background  :      white;
	padding:4rem;
	 border-radius  :        12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {

    width: 80px;
    height   : 80px;
                    margin: 0 auto 2rem;
	}

.thank-you-icon img     {
  width :    100%; 
	  height: 100%; 
	  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));

}

.thank-you-section h1

{
  font-size: 2.5rem;
    color: #1a237e;
        margin-bottom: 2rem;
}

.thank-you-main {
  font-size: 1.3rem;
   color     :   #667eea;
    font-weight: 600;
         margin-bottom: 2rem;
}

.thank-you-content {
  text-align: left;
   margin-bottom: 2rem;
}

.thank-you-content p {
	 color: #555;
     line-height: 1.8;
   margin-bottom: 1.5rem;
}

.thank-you-content h2 {
               margin-top: 2rem;
	color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.thank-you-steps {
    margin: 1.5rem 0;
    list-style: none;
  padding:  0;
	

}

.thank-you-steps li {
    display    : flex;
   gap: 1.5rem;
	 margin-bottom: 1.5rem;
  align-items :       flex-start;
}

.step-number {
   display: flex;
  align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
               border-radius: 50%;
   font-weight: 700;
   font-size :   1.1rem;
  flex-shrink: 0;
}  

.step-content {
   text-align: left;
}

.step-content h3 {
   color    :     #1a237e;
   margin: 0 0 0.5rem 0;
    font-size    :   1rem;
}

.step-content p {
    color: #666; 
	  margin: 0; 
	  font-size: 0.95rem;
}

.thank-you-box {
   background: #f0f4ff;
    padding    :  1.5rem;
  border-radius    :  8px;
   margin: 2rem 0;
   border-left: 4px solid #667eea;
   text-align: left;
}

.thank-you-box h3 {
   margin-bottom: 0.8rem;
	margin-top: 0;
    color: #1a237e;
}

.thank-you-box p {
   color: #555;
    margin: 0;
}

.thank-you-box a {
   color: #667eea;
  text-decoration: none;
	 font-weight: 600;
  transition: color 0.3s ease;
}

.thank-you-box a:hover {
   color: #764ba2;
    text-decoration: underline;
}

.thank-you-contact {
	  background: #fff5f0;
   padding: 1.5rem;
    border-radius   :       8px;
    margin-bottom: 2rem;
  text-align: left;
}  

.thank-you-contact h3 {
	  color: #1a237e;
    margin-bottom: 0.8rem;
	margin-top: 0;

}

.thank-you-contact p {
        color: #555; 
    margin: 0.5rem 0;
}

.contact-phone


{
  font-size   :        1.2rem !important;
  color: #667eea !important;
}

.thank-you-actions {
   display: flex;
    gap: 1rem;
	justify-content: center;
  flex-wrap: wrap;
  margin-top  :2rem;
}

.action-button {
  display :       inline-block;
    padding: 0.9rem 2rem;
    border-radius    :  8px;
  text-decoration  :        none;
   font-weight: 600;
    transition: all 0.3s ease;
} 

.action-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
} 

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.action-button.secondary {
    background: white;
  color: #667eea;
   border: 2px solid #667eea;


}

.action-button.secondary:hover
	{

	  background :       #f0f4ff;

}

.testimonials-section {
               padding: 5rem 2rem;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
   font-size: 2.2rem;
  color: #1a237e;
  margin-bottom: 3rem;
}

.testimonials-grid {
   max-width     :       1200px;
      margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #f0f4ff 0%, #fff5f0 100%);
	 padding: 2rem;
	 border-radius: 12px;
    border-left: 4px solid #667eea;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.testimonial-text {
    color: #555;
   font-size: 0.95rem;
   line-height: 1.8;
  margin-bottom: 1.5rem;
   font-style: italic;
}

.testimonial-author {
  color: #1a237e;
   margin  :   0;
                    font-weight: 600; 
	
}@media (max-width: 768px) {
    .thank-you-container {
        padding: 2rem;
    }

    .thank-you-section h1 {
        font-size: 1.8rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-header h2 {
        font-size: 1.4rem;
    }

    .service-detail-body {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-steps li {
        gap: 1rem;
    }

    .thank-you-section {
        padding: 2rem 1rem;
        min-height: auto;
    }
}.policySection {
	 padding: 80px 2rem;

	  background: linear-gradient(to bottom, #f8f9fa, #ffffff);

	   min-height: 70vh;
}

.policyContainer {

    max-width: 900px; 
	   margin: 0 auto; 
	   text-align: left;}

.policyContainer h1 {
  font-size: 3rem; 
		color: #1a237e; 
		 margin-bottom: 2rem; 
		font-weight: 700; 
	    text-align: center;
}

.policyContainer h2 {
    font-weight  :      600;
   font-size: 1.8rem;
   border-bottom: 3px solid #667eea;
   margin-top: 2.5rem;
    color:     #1a237e;
	margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.policyContainer p {
    color: #555;
    margin-bottom: 1.5rem;
  line-height: 1.9;
               font-size: 1rem;
   text-align: justify;
}

.policyContainer p:first-of-type {
   font-size: 1.05rem;
  color: #666;

}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}