* 
 {


  margin: 0;
    padding: 0;
  box-sizing: border-box;
     }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
   background-color: #ffffff;
}

.primary-navigation
{
   position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
          z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.primary-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.nav-wrapper {
   display: flex;
   justify-content: space-between;
   align-items: center;
  max-width :      1200px;
  margin: 0 auto;
    padding: 1rem 2rem;
}

.brand-logo {
    height: 45px;
  width: auto;
}

.menu-items {
   display: flex;
  gap: 2rem;
}

.menu-items a {
        text-decoration: none;
    color: #333;
   font-weight: 500;
		 transition: color 0.3s ease;
   position: relative;
}

.menu-items a:hover {
    color: #2563eb;
}

.menu-items a::after {

	  content: '';
  position: absolute;
   bottom: -5px;
  left    :       0;
   width: 0;
  height: 2px;
    background: #2563eb;
   transition: width 0.3s ease;
}

.menu-items a:hover::after {
    width: 100%;
}

.mobile-toggle {
   display: none;
  flex-direction: column;
    cursor: pointer;
    padding   :        5px;
}

.mobile-toggle span {
 width: 25px;
    height: 3px;
    background     :#333;
   margin: 3px 0;
  transition   :  0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2)    {
   opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

main {
   margin-top   :      80px;
}

.hero-area {
  padding    :4rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
   min-height: 80vh;
   display: flex;
  align-items     :center;
}

.hero-content {

	    margin     :     0 auto;
         gap: 4rem;
  max-width: 1200px;
          align-items: center;
   display: grid;
  grid-template-columns: 1fr 1fr;
	}

.text-section h1 {
  font-size  :       3.5rem;
	 font-weight     :      700;
   margin-bottom  :     1.5rem;
	color: #1e293b;
   line-height: 1.2;
}

.text-section p {
  font-size: 1.2rem;
        margin-bottom  :2rem;
         color: #64748b;
    line-height: 1.7;
}

.action-buttons {
    display: flex;
   gap: 1rem;
}

.primary-btn, .secondary-btn    {

        padding: 1rem 2rem;
    -webkit-transition: all 0.3s ease;
    text-decoration :none;
  border-radius: 8px;
  -moz-transition: all 0.3s ease;
	 font-weight: 600;
	transition: all 0.3s ease;
    display: inline-block;


}

.primary-btn {
               background: #2563eb;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.primary-btn:hover {
   background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.secondary-btn {
    background: transparent;
    color    :#2563eb;
  border   : 2px solid #2563eb;
}

.secondary-btn:hover {
		background: #2563eb;
  color     : white;
  transform: translateY(-2px);

}



.visual-section img {
    width: 100%;
	height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.services-overview {
    background: white;
   padding: 5rem 2rem;
}

.section-header   {
      max-width: 600px;
   margin  :   0 auto 4rem;
	text-align: center;
}

.section-header h2 {
	 font-size: 2.5rem;
  margin-bottom   : 1rem;
   color:  #1e293b; 

}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.services-grid


{
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.service-card {
   background: white;
    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-card img {

	 width: 100%;
  height: 250px;
  object-fit: cover;
	
     }

.service-card h3{
   color: #1e293b;
    margin: 1.5rem 1.5rem 1rem;
  font-size: 1.5rem;
}

.service-card p {
	padding: 0 1.5rem 1.5rem;
  color  :   #64748b;
   line-height: 1.6;
}

.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
}

.cta-content {
    max-width: 1200px;
  margin: 0 auto;
	 display: grid;
   grid-template-columns: 1fr 1fr;
          gap   :4rem;
   align-items: center;
}

.cta-content h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-content p   {
       font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
        line-height: 1.7;
	}

.cta-button {
    display: inline-block;
  padding: 1.2rem 2.5rem;
 background: #f59e0b;
   color: white;
          text-decoration: none;
  border-radius   :     8px;
    font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
   background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.cta-visual img {
  width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.approach-section {

    padding: 5rem 2rem;
  background: #f8fafc;}

.approach-content {
  max-width: 1200px;
               margin: 0 auto;
}


.approach-content h2 
 {
    text-align: center;

    font-size: 2.5rem;

  margin-bottom: 3rem;

    color: #1e293b;
}

.approach-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap  :2rem; 
	


}

.approach-item {
  background: white;
  padding: 2rem;
    border-radius  :12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
   transition:  transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-3px);
}

.approach-item h3 {
   font-size: 1.4rem;

   margin-bottom: 1rem;

    color: #2563eb;
}

.approach-item p


{
  color: #64748b;
   line-height: 1.6;
}

.contact-section {
   padding: 5rem 2rem;
    background    :       white;
}

.contact-wrapper {

	      max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap    :     4rem;
	}

.contact-info h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: #1e293b;
}

.contact-info p		{

    font-size :1.1rem;

	  margin-bottom: 2rem;

	  color: #64748b;

	  line-height: 1.7;
}

.contact-details {
	margin-top    :      2rem;
} 

.contact-item     {
          margin-bottom  :   1rem;
    color: #64748b;
}

.contact-item strong {
         color: #1e293b;
}

.contact-form {
  background: #f8fafc;
         padding: 2rem;
	 border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.5rem;
        position  :  relative;
}

.form-group label {

  display: block;
   margin-bottom  :      0.5rem;
	 color: #374151;
  font-weight: 500;}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 0.75rem;
   border: 2px solid #e5e7eb;
   border-radius: 6px;
   font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline  :    none;
   border-color: #2563eb;
}

.form-group.focused label {
	 color: #2563eb;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {


   border-color: #ef4444;

}

.submit-btn

{
  border-radius: 6px;
  transition     : background 0.3s ease;
    width: 100%;
   cursor: pointer;
   border: none;
   font-weight: 600;
   padding: 1rem;
	color: white;
    background   :#2563eb;
  font-size: 1rem;
}

.submit-btn:hover {

   background: #1d4ed8;
     }

.site-footer {
   background: #1e293b;
  color: white;
   padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:       2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #f8fafc;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li   {
   margin-bottom: 0.5rem;
}

.footer-section ul li a {
          color :  #cbd5e1;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
	
}

.footer-logo {
   height: 40px;
   width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-section p {


    color: #cbd5e1;
   line-height: 1.6;
}

.footer-bottom {

   margin-top: 2rem;
  padding-top: 2rem;
   border-top: 1px solid #374151;
  text-align: center;
    color: #94a3b8;
	}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }
    
    .nav-active .menu-items {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .text-section h1 {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }
    
    .hero-area {
        padding: 2rem 1rem;
    }
    
    .text-section h1 {
        font-size: 2rem;
    }
    
    .services-overview,
    .cta-section,
    .approach-section,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .section-header h2,
    .approach-content h2,
    .contact-info h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}.about-hero {
   padding: 4rem 2rem;

  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);

    min-height: 70vh;

    display: flex;

    align-items: center;
}

.about-hero-content {

	   max-width: 1200px;
  margin: 0 auto;
       display:   grid;
	grid-template-columns: 1fr 1fr;
    gap   :        4rem;
	align-items: center; 
}

.hero-text h1 {
   font-size: 3rem;
	font-weight: 700;
   margin-bottom: 1.5rem;
    color: #1e293b;
  line-height :1.2;
}

.hero-text p 
 {
   font-size: 1.2rem;
   color: #64748b;
   line-height: 1.7;
}

.hero-visual img {
   width: 100%;
  height: auto;
	 border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.company-story {
	padding: 5rem 2rem;

	   background: white;
}


.story-container {
  margin  :      0 auto;
  max-width: 1200px;


}



.story-container h2 {
   font-size: 2.5rem;
  text-align :        center;
  margin-bottom: 3rem;
    color:   #1e293b;
	
}


.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
   gap  :3rem;
  align-items: center;
}

.story-text p {
   margin-bottom: 1.5rem;
    font-size :       1.1rem;
	line-height: 1.7;
        color: #475569;
}

.story-image img {
   width: 100%; 
	    height: auto; 
	  border-radius: 12px; 
	  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.expertise-areas {
  background: #f8fafc;
  padding: 5rem 2rem;
}

.expertise-container {
   max-width: 1200px;
    margin: 0 auto;
}

.expertise-container h2 {
   font-size: 2.5rem;
  color:  #1e293b;
    text-align: center;
   margin-bottom :        3rem;
}

.expertise-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;
}

.expertise-item {
   background: white;
    padding: 2rem;
  border-radius    :  12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-item h3   {
    font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2563eb;
}

.expertise-item p {
    line-height: 1.6;
    color: #64748b;
}

.approach-methodology {
   padding: 5rem 2rem;
  background: white;
}

.methodology-container {
   	max-width: 1200px;
  margin: 0 auto;


}

.methodology-container h2 {
    margin-bottom: 3rem;
   color: #1e293b;
  font-size    :    2.5rem;
    text-align: center;
}

.methodology-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap   :        4rem;
   align-items:    center; 

}

.methodology-image img {
   width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.method-step   {
   margin-bottom: 2rem;
}

.method-step h3 {
    font-size: 1.3rem;
	  margin-bottom     :       0.8rem;
	  color: #1e293b;


}

.method-step p {

	    color: #64748b;
	line-height: 1.6;
}

.values-section {
   padding: 5rem 2rem;
   background: #f1f5f9;
}

.values-container {
  max-width: 1200px;
    margin: 0 auto; 

}

.values-container h2


{
   font-size: 2.5rem;
   text-align: center;
 margin-bottom: 3rem;
    color: #1e293b;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.value-card {
    background    :     white;
   padding: 2rem;
	border-radius: 12px;
    text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
	 transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.4rem;
  color: #2563eb;
               margin-bottom: 1rem;
}

.value-card p {
  color: #64748b;
   line-height     :  1.6;
}

.client-success{
         padding: 5rem 2rem;
   background: white;
}

.success-container     {
    max-width: 1200px;
   margin: 0 auto;
}

.success-container h2
	{
  font-size: 2.5rem;
               text-align: center;
    margin-bottom: 3rem;
  color: #1e293b;
}

.success-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.success-stats {
   display: flex;
    flex-direction: column;
   gap: 2rem;
}

.stat-item		{
  display  :     flex;
    flex-direction: column;
  align-items: center;
    text-align: center;
	padding: 1.5rem;
    background: #f8fafc;
   border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
  color: #2563eb;
   margin-bottom: 0.5rem;
}

.stat-label

{
   color:     #64748b;
     font-size: 1rem;
}

.success-image img {
     width: 100%;
  height: auto;
               border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.training-formats {
    padding: 5rem 2rem;
   background    :       #f8fafc;
}

.formats-container {
        max-width     : 1200px;
  margin: 0 auto;
}

.formats-container h2 {
  font-size    :      2.5rem;
                    text-align: center;
	margin-bottom    :        3rem;
    color  :   #1e293b;
}

.formats-grid{
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
       gap: 3rem;
}

.format-item {
  background: white;
    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.format-item:hover {


  transform: translateY(-5px);
     }

.format-item img {
    width: 100%;
       height: 250px;
     object-fit: cover;
}

.format-item h3 {
 font-size: 1.5rem;

  margin     :       1.5rem 1.5rem 1rem;

    color: #1e293b;


}

.format-item p {
   padding: 0 1.5rem 1.5rem;
    color     : #64748b;
    line-height: 1.6;
}

.thankyou-hero {
  padding: 4rem 2rem;

  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);

  min-height: 80vh;

  display: flex;

      align-items: center;
}

.thankyou-container {
   max-width: 1200px;

  margin   :     0 auto;

    display: grid;

   grid-template-columns: 2fr 1fr;

         gap: 4rem;

    align-items: center;
}

.thankyou-content {

  text-align: center;
	}



.success-icon  
  {
    margin-bottom :        2rem;
}

.checkmark-circle {
    width: 80px;
     height: 80px;
   border-radius: 50%;
                    background: #10b981;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease-out;
}

.checkmark  {

   width: 25px;
   height: 25px;
    border: 3px solid white;
               border-top: none;
   border-right: none;
  transform: rotate(-45deg);
  margin-top: -5px;
     }@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-content h1 {
  margin-bottom: 1.5rem;
  font-weight: 700;
    font-size: 3rem;
  color: #1e293b;
}

.main-message {
   font-size: 1.2rem;
    margin-bottom: 3rem;
	 color: #64748b;
   line-height: 1.7;
}

.next-steps {
  margin: 3rem 0;
   text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
   color: #1e293b;
  text-align: center;
}

.steps-grid {
       display: grid;
   gap: 1.5rem;


}

.step-item {
               display: flex;
  align-items: flex-start;
   gap    :1rem;
  padding: 1.5rem;
    background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
} 

.step-number {

	    background: #2563eb;
   color    :     white;
  width: 40px;
  height: 40px;
    border-radius: 50%;
   display    :     flex;
    align-items: center;
          justify-content: center;
   font-weight: 700;
  flex-shrink: 0;


}

.step-content h3 {
					font-size: 1.2rem;
   margin-bottom: 0.5rem;
    color :        #1e293b;
}

.step-content p {
   color: #64748b;
   line-height   :    1.6;

}

.additional-info

{
   margin  :3rem 0;
    text-align: center;

}

.additional-info h2 {
      font-size: 2rem;
    margin-bottom: 1rem;
	color: #1e293b;
}

.additional-info p {
   margin-bottom: 2rem;
  color: #64748b;
	line-height: 1.6;
}

.contact-reminder {
    background: #f8fafc;
   padding: 2rem;
  border-radius: 12px;
    margin-top: 3rem;
}

.contact-reminder h3 {
  color: #1e293b;
   margin-bottom     :  1rem;
    font-size: 1.5rem;
}

.contact-reminder p {
  color: #64748b;
               margin-bottom: 1rem;
}

.phone-contact {
  font-size: 1.5rem;
   color: #2563eb;
	font-weight: 700;
    margin: 1rem 0;
}

.contact-hours {
  font-style: italic;
    color: #94a3b8;
}

.thankyou-visual img {
    width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.related-content {
    padding     :  5rem 2rem;
  background: white;
}

.related-container {

    max-width: 1200px;
  margin: 0 auto;
}

.related-container h2


{
   font-size: 2.5rem;
  text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.related-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-item {
   background: #f8fafc;
   border-radius: 12px;
   overflow  :    hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.related-item:hover {
  transform: translateY(-5px);
}

.related-item img {
   width   :   100%;
   height: 200px;
   object-fit  :  cover;
}

.related-item h3 {
          color: #1e293b;
  margin: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
}

.related-item p {
     padding: 0 1.5rem 1.5rem;
   color: #64748b;
  line-height   : 1.6;
	}@media (max-width: 768px) {
    .about-hero-content,
    .story-content,
    .methodology-content,
    .success-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .story-container h2,
    .expertise-container h2,
    .methodology-container h2,
    .values-container h2,
    .success-container h2,
    .formats-container h2,
    .related-container h2 {
        font-size: 2rem;
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .company-story,
    .expertise-areas,
    .approach-methodology,
    .values-section,
    .client-success,
    .training-formats,
    .thankyou-hero,
    .related-content {
        padding: 3rem 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .success-stats {
        flex-direction: column;
    }
}.cookies-section,
.privacy-section		{
   padding: 5rem 2rem;
    background: white; 

}

.cookies-content,
.privacy-content {
  max-width: 1200px;
   margin: 0 auto;
}

.cookies-content h1,
.privacy-content h1 {

	   font-size: 2.5rem;
    margin-bottom  :     1.5rem;
  color: #1e293b;
  text-align: center;


}

.cookies-content h2,
.privacy-content h2

{
   font-size: 1.8rem;

         margin: 2rem 0 1rem;

	color: #2563eb;
}

.cookies-content p,
.privacy-content p {
    font-size: 1.1rem;
  color: #64748b;
  line-height:   1.7;
    margin-bottom    :       1.5rem;

}

.cookies-content ul,
.privacy-content ul {
  list-style-type :      disc;
    padding-left: 2rem;
   margin-bottom: 1.5rem;
}

.cookies-content ul li,
.privacy-content ul li

{
    font-size: 1.1rem;
   color: #64748b;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}@media (max-width: 768px) {
    .cookies-content h1,
    .privacy-content h1 {
        font-size: 2rem;
    }

    .cookies-content h2,
    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .cookies-section,
    .privacy-section {
        padding: 3rem 1rem;
    }
}