* {
   margin: 0;
               padding: 0;
   box-sizing: border-box;
}

body    {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
   color: #333;
   overflow-x: hidden;
}

.container {
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
  top: 0;
    width: 100%;
   z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
  padding: 1rem 2rem;
   max-width: 1200px;
	 margin: 0 auto;
}

.nav-logo {
  width   :    auto;
    height: 45px;
}

.nav-menu {
   display :   flex;
    gap: 2rem;
	
}

.nav-link {
    text-decoration: none;
  -o-transition: color 0.3s ease;
  color: #333;
  -webkit-transition: color 0.3s ease;
         font-weight    :       500;
    -moz-transition: color 0.3s ease;
    transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover {
   	 color: #2c5282;

}

.nav-link::after {
  content: '';
	position: absolute;
  bottom   :-5px;
	left: 0;
  width: 0;
    height    :   2px;
   background: #2c5282;
    transition: width 0.3s ease;
}

.nav-link:hover::after  
  {
   width: 100%;


} 

.nav-burger {
  flex-direction: column;
  display  :    none;
    cursor: pointer;
   padding: 5px;
}

.nav-burger span {
   width: 25px;
   height: 3px;
   background: #333;
   margin: 3px 0;
   transition:        0.3s;
}


.nav-burger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-burger.active span:nth-child(2) {

	         opacity: 0;
     } 

.nav-burger.active span:nth-child(3)  {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   min-height: 100vh;
    display: flex;
  align-items: center;
                    padding: 120px 20px 60px;
    color  :white;
}

.hero-content {
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
   grid-template-columns     : 1fr 1fr;
   gap: 4rem;
      align-items     :  center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
   opacity  :  0.9;
}

.hero-actions {
    display: flex;
			gap: 1rem;
   flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
        padding: 12px 24px;
               display: inline-block;
	font-weight: 600;
   border-radius: 8px;
    transition: all 0.3s ease;
  text-decoration:  none;
}

.btn-primary {
  background: #fff;
  color: #2c5282;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-secondary 
 {
  border: 2px solid white;

	    color: white;

	    background: transparent;
}

.btn-secondary:hover {
    background: white;
   color: #2c5282;
}

.hero-image {
    text-align: center;
}

.hero-image img {
        max-width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.features-section {
   padding: 80px 20px;
  background: #f8fafc;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #2d3748;
}

.features-grid {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	gap: 2rem;
}

.feature-card {
	 background: white;
    padding    :      2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
   font-size: 1.5rem;
    margin-bottom  :        1rem;
    color: #2c5282;
}

.services-section {

  padding   :    80px 20px;
	background: white;}

.services-section h2 {
  text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
	 color: #2d3748;
}

.services-grid {

	    display: grid;
      gap: 3rem;

}

.service-item {
  display: grid;
 grid-template-columns: 1fr 2fr;
	gap: 2rem;
	align-items: center;
	 padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-item:nth-child(even) {
  grid-template-columns: 2fr 1fr;
	
}

.service-item:nth-child(even) .service-content {
	  order  :   -1;
     }

.service-item img {
    width: 100%;
	height: 300px;
	 object-fit: cover;
  border-radius: 10px;
}

.service-content h3   {
   font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.service-content p
{
  margin-bottom    :      1.5rem;
  color: #4a5568;
	
}

.service-content ul {
	 list-style: none;

	 padding-left: 0;


}

.service-content li{
   padding: 0.5rem 0;
	 position  :  relative;
  padding-left: 1.5rem; 
}

.service-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
    color   :#48bb78;
    font-weight: bold;
}

.mentoring-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.mentoring-content {
    display: grid;
         grid-template-columns   :    2fr 1fr;
   gap: 3rem;
  align-items: center;
}

.mentoring-text h2 {

	    font-size: 2.5rem;
    margin-bottom  :    1.5rem;
   color: #2d3748;}

.mentoring-text p {
  margin-bottom: 1.5rem;
  color     :        #4a5568;
  font-size: 1.1rem;
}

.stats-grid {


  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
   margin-top: 2rem;

}

.stat-item {
          text-align: center;
}

.stat-number {
  display: block;
   font-size: 2.5rem;
  font-weight: 700;
   color     :       #2c5282;


}

.stat-label {
	   display: block;
    margin-top: 0.5rem;
					color: #4a5568;
         font-size: 0.9rem;} 

.mentoring-image img    {
    width: 100%;
	height: 400px;
  object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	}

.cta-section {
  background: linear-gradient(135deg, #2c5282 0%, #2d3748 100%);
    padding: 80px 20px;
   text-align: center;
  color: white;


}

.cta-content h2 {
     font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
      font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity :  0.9;
  max-width: 600px;
      margin-left   :        auto;
   margin-right: auto;


}

.btn-cta {
      background: #48bb78;
    color: white;
  padding: 15px 30px;
   border-radius: 8px;
                    text-decoration: none;
  font-weight: 600;
    font-size: 1.1rem;
			transition: all 0.3s ease;
	display: inline-block;
}

.btn-cta:hover {


    background: #38a169; 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
     }

.contact-section {
   padding: 80px 20px;
  background     :       #f8fafc;
}

.contact-section h2 {
   text-align: center;

	 font-size: 2.5rem;

    margin-bottom: 3rem;

		 color: #2d3748;
}

.contact-grid
{


   display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 3rem;}

.contact-info h3 {
	font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #2c5282;
}

.contact-item {


               margin-bottom  :        2rem;
}

.contact-item strong {
  color: #2d3748;
  display: block;
  margin-bottom:   0.5rem;
}

.contact-form {
  background: white;
   padding :   2rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
   font-size    :  1.5rem;

  margin-bottom: 2rem;

   color: #2c5282;
}

.form-group  
  {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
   border: 2px solid #e2e8f0;
    border-radius: 8px;
    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: #2c5282;
}

.btn-submit {
  background: #2c5282;
  color: white;
    padding: 12px 24px;
       border: none;
    border-radius: 8px;
  font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
                    width: 100%;
}

.btn-submit:hover {
     background   :    #2a4a82;
  transform: translateY(-2px);
}

.main-footer {
	   background: #2d3748;
   color:     white;
  padding: 60px 20px 20px; 


}

.footer-content  {
   display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
   margin-bottom: 2rem;
}

.footer-logo {
  height: 60px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom :      1rem;
}

.footer-brand p {


    opacity: 0.8;
                    line-height  :1.6;


}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;

	                    color: #cbd5e0;
}

.footer-links ul {
       list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a
	{
  color: #a0aec0;
    text-decoration: none;
  transition  : color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
  margin-bottom: 0.5rem;
    color: #a0aec0;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
  padding-top: 2rem;
    text-align: center;
   color: #a0aec0;
}@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-item {
        grid-template-columns: 1fr !important;
    }
    
    .service-item:nth-child(even) .service-content {
        order: 0;
    }
    
    .mentoring-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}.nav-link.active {
    color: #2c5282;
    font-weight: 600;
}

.about-hero {
     background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
	 padding: 120px 20px 80px;
    color: white;
  text-align: center;
     }

.about-hero-content h1 {
 font-size: 3rem;
    font-weight: 700;
   margin-bottom: 1rem;
}

.hero-subtitle {
   opacity: 0.9;
  max-width: 600px;
  font-size: 1.3rem;
	margin: 0 auto;
}

.about-story {
   padding: 80px 20px;
    background: white;
}

.story-content {
    gap: 3rem;
    align-items: center;
  display: grid;
   grid-template-columns: 2fr 1fr;
}

.story-text h2 {
    font-size: 2.5rem;
	margin-bottom: 2rem;
  color: #2d3748;
}

.story-text p
	{
   margin-bottom: 1.5rem;
    color :     #4a5568;
   font-size: 1.1rem;
    line-height: 1.7; 
	
}

.story-image img
{
   width: 100%;
   height: 400px;
   object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-vision 
 {
    padding: 80px 20px;
    background: #f7fafc;
}

.mv-grid {

	    display : grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	    gap :  2.5rem;
     }

.mv-item {
    background: white;
    padding: 2.5rem;
    border-radius:        15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align   :      center;
}

.mv-item h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
    color: #2c5282;
}

.mv-item p {
   color: #4a5568;
   line-height: 1.7; 

}

.team-section {

   padding: 80px 20px;
  background: white;
}

.team-section h2 {
	text-align: center;
  font-size   :     2.5rem;
  margin-bottom: 3rem;
    color: #2d3748;
}

.team-grid
{
   display: grid;
    gap: 3rem;
}

.team-member {
   display: grid;
   grid-template-columns  :      300px 1fr;
    gap: 2rem;
    align-items    :      start;
  padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.team-member:nth-child(even)  {
   grid-template-columns: 1fr 300px;
}

.team-member:nth-child(even) .member-info {
    order: -1;
}

.member-image img {
	 width: 100%;
  height: 300px;
  object-fit: cover;
    border-radius: 12px;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom:      0.5rem;
   color: #2c5282;
}


.member-role {
   font-weight     :600;
      color: #667eea;
  margin-bottom    :        1rem !important;
}

.member-info p {
   color: #4a5568;
   line-height: 1.6;
}

.approach-section{
         padding: 80px 20px;
  background: #edf2f7;


}

.approach-content {
  display: grid;
   grid-template-columns: 2fr 1fr;
  gap   :  3rem;
   align-items: center;
}

.approach-text h2 {
    font-size     :  2.5rem;
      margin-bottom: 2rem;
      color: #2d3748;
}

.approach-text > p {
    margin-bottom: 2rem;
 color: #4a5568;
  font-size: 1.1rem;
    line-height: 1.7; 

}

.approach-points {
  display :     grid;
    gap: 1.5rem;
}

.approach-point h4 {
    color: #2c5282;
  margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.approach-point p {
   color  :  #4a5568;
    line-height: 1.6;
}

.approach-image img {
  width     :        100%;
   height: 350px;
   object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.achievements-section {
    padding    :     80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  text-align: center;
}

.achievements-section h2 {
	 font-size: 2.5rem; 
     margin-bottom: 3rem;
}

.achievements-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap    :  2rem;

}



.achievement-item {
   padding: 2rem;
}

.achievement-number {
    margin-bottom: 1rem;
    font-size: 3rem;
   color   :   #ffd700;
                    font-weight: 700;
}

.achievement-text {
  font-size  :      1.1rem;
  opacity: 0.9;
}

.certifications-section {
    padding: 80px 20px;
  text-align: center;
	background: white;
	
}

.certifications-section h2 {
		font-size: 2.5rem;
  margin-bottom: 2rem;
    color: #2d3748;
}

.cert-content p {
  font-size     :    1.1rem;
   color: #4a5568;
  line-height: 1.7;
   max-width   :    800px;
               margin: 0 auto 3rem;
}

.cert-list {
  display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
          margin: 0 auto;
}

.cert-item {
    padding   :      1.5rem;
  background: #f7fafc;
    border-radius: 10px;
    border-left:4px solid #2c5282;
  font-weight: 500;
   color: #2d3748;
}

.thankyou-hero {

  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  padding: 120px 20px 80px;
		 color: white;
    text-align: center;
   min-height    :        60vh;
   display: flex;
   align-items: center;


}

.thankyou-content h1 {
        font-size: 3rem;
  font-weight: 700;
  margin-bottom    :   1rem;
}

.thankyou-subtitle {
    font-size: 1.3rem;
   opacity: 0.9;
   margin-bottom: 2rem;
}

.thankyou-icon {
    margin-bottom   :  2rem;
}

.checkmark-circle {
       width: 80px;
   height  :      80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
   margin: 0 auto;
   display: flex;
    align-items: center;
    justify-content: center;
   animation: scaleIn 0.6s ease-out;
} 

.checkmark {

   width: 30px;
  height: 15px;
   border: 3px solid white;
	border-top: none;
   border-right: none;
  transform: rotate(-45deg);
          animation: checkmarkDraw 0.8s ease-out 0.3s both;


}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    100% { width: 30px; height: 15px; }
}.confirmation-details {
    padding: 80px 20px;
  background:        white;
}

.confirmation-grid {
    display :       grid;
   grid-template-columns:      2fr 1fr;
  gap: 3rem;
    align-items : center;
}

.confirmation-text h2 {
   font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2d3748;
}

.next-steps {
  gap: 2rem;
   display: grid;}

.step-item {
      display: grid;
  grid-template-columns: 60px 1fr;
   gap: 1.5rem;
  align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
   background:        #4299e1;
    color: white;
   border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {


  font-size: 1.3rem;
  margin-bottom: 0.5rem;
	color: #2c5282;
     }

.step-content p {
   color: #4a5568;
   line-height :  1.6;
}

.confirmation-image img {

	  width   :      100%;
   height: 350px;
   object-fit: cover;
       border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);


}


.additional-info {
  padding: 80px 20px;
   background: #f7fafc;
}  

.info-grid


{
    display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
}

.info-card    {
    background: white;
	padding: 2rem;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-card h3 {


    margin-bottom: 1rem;
    font-size: 1.3rem;
	color    :        #2c5282;}

.info-card p {
  color: #4a5568;
   line-height: 1.6;
}

.while-waiting {
    padding: 80px 20px;
	 background  :   white;
}

.while-waiting h2 {


    text-align   :    center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #2d3748;

}

.waiting-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.waiting-item {
   text-align: center;
    padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.waiting-item img {
  width: 100%;
   height: 200px;
  object-fit: cover;
  border-radius: 10px;
    margin-bottom: 1.5rem;
}

.waiting-item h3
	{
   font-size: 1.3rem;

   margin-bottom: 1rem;

   color: #2c5282;
}

.waiting-item p {
    color: #4a5568; 
  line-height: 1.6; 
    margin-bottom: 1.5rem;
}

.btn-outline {
   text-decoration: none;
          font-weight: 500;
   padding: 10px 20px;
	border: 2px solid #2c5282;
	display: inline-block;
  border-radius: 8px;
   color    :   #2c5282;
    transition: all 0.3s ease;
}

.btn-outline:hover	{

  background: #2c5282;
  color: white;
}

.contact-reminder {

	   padding: 60px 20px;
  text-align: center;
    background: #edf2f7;} 

.reminder-content h2 {
    font-size: 2rem;
	margin-bottom: 1rem;
    color  :      #2d3748;
}

.reminder-content p {
	  font-size: 1.1rem;
    color: #4a5568;
   margin-bottom: 2rem;}

.contact-details {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
         max-width: 600px;
   margin: 0 auto;
}

.contact-detail {
   display: flex;
    flex-direction: column;
	gap: 0.5rem;
}

.contact-detail strong {


  color: #2c5282;
  font-size: 1.1rem;}

.contact-detail span  {
               color: #4a5568;


}@media (max-width: 1024px) {
    .story-content,
    .approach-content,
    .confirmation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .team-member:nth-child(even) .member-info {
        order: 0;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-list {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}.cookies-section,
.privacy-section {
    padding: 100px 20px;
          background: #f8fafc;
}

.cookies-section h1,
.privacy-section h1 {
    font-size    :    2.5rem;
   color: #2d3748;
   margin-bottom: 2rem;
    text-align: center;
}

.cookies-section h2,
.privacy-section h2 {
        font-size: 1.8rem;
    color: #2c5282;
   margin-top: 2rem;
  margin-bottom: 1rem;
}

.cookies-section p,
.privacy-section p {
  font-size: 1.1rem;
	 color   :  #4a5568;
   margin-bottom: 1.5rem;
}

.cookies-section ul,
.privacy-section ul {
   list-style: none;
   padding-left: 0;
    margin-bottom: 1.5rem;
}

.cookies-section li,
.privacy-section li {
	  padding: 0.5rem 0;
	padding-left: 1.5rem;
   position: relative;}

.cookies-section li::before,
.privacy-section li::before {
  content: '✓';
  font-weight: bold;
   position: absolute;
    color: #48bb78;
    left: 0;
}@media (max-width: 768px) {
    .cookies-section h1,
    .privacy-section h1 {
        font-size: 2rem;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}