* {
  margin: 0;
  padding   :     0px;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
       color: #333;
  background: #ffffff;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
    position: fixed;
	top: 0;
    width: 100%;
   z-index: 1000;
   border-bottom  :  1px solid #e8e8e8;
}

.nav-container {
    justify-content: space-between;

	    display:        flex;

	    padding: 1rem 2rem;

	   max-width: 1200px;

	               margin: 0 auto;

				align-items: center;
}

.logo-image {
   height: 45px;
    width: auto;
}

.nav-links    {
	display: flex;
  list-style: none;
    gap: 2rem; 
	
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
   transition: color 0.3s ease;
}

.nav-links a:hover {
	 color: #007bff;
}

.mobile-toggle {
	    display: none;
	flex-direction   :        column;
    cursor: pointer;
    gap: 4px;
	}

.mobile-toggle span {
   width: 25px;
    height: 3px;
	 background-color: #333;
    transition: 0.3s;
}

.hero-section {
       padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {

	  max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;

}

.hero-text h1 {
   font-size: 3.2rem;
   font-weight: 700;
    color: #212529;
   margin-bottom:       1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.3rem;
   color: #6c757d;
    margin-bottom: 2.5rem;
   line-height: 1.5;
}

.hero-buttons {


      display: flex;
  gap: 1.5rem;


}

.cta-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
      color     :    white;
   	padding: 15px 30px;
                  border-radius: 8px;
       text-decoration :      none;
       font-weight: 600;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
          background: transparent;
    color: #007bff;
     padding: 15px 30px;
	border: 2px solid #007bff;
  border-radius: 8px;
   text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease; 
	
}

.btn-secondary:hover {
	color: white;
  background: #007bff;
}

.hero-image img {
  width: 100%;
        height: 400px;
       object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-section {
  padding: 80px 0;
    background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.services-section h2     {
   text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
    color    :   #212529;
     }

.services-grid

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
       padding: 2rem;
  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 15px 40px rgba(0,0,0,0.15);
}

.service-card img {
   width: 100%;

	  height: 200px;

	  object-fit: cover;

	   border-radius: 8px;

	  margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;


}



.service-card p {
    color: #666;
    line-height  :    1.6;
}

.cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); 
	  padding: 80px 0; 
	         text-align: center;
}

.cta-content {
   margin: 0 auto;
         padding: 0 2rem;
    max-width: 800px;
}

.cta-section h2 {
   color: white;
   font-size   :   2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
	font-size: 1.2rem;
    margin-bottom: 2rem;
   line-height: 1.6;
}

.cta-button {
    background: white;
  color: #007bff;
               padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
   font-size     : 1.1rem;
    transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
	
}

.about-preview {
  padding: 80px 0;
   background: #f8f9fa;}

.about-content {
     gap: 4rem;
  margin  :        0 auto;
       padding: 0 2rem;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
     display  : grid;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
	color: #212529;
	
}

.about-text p {
   font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.benefits-list {

	  list-style: none;

}

.benefits-list li {


    padding: 0.5rem 0;
      position: relative;
    padding-left: 2rem;
  color: #555;

}  

.benefits-list li:before {

  content: "✓";
   	 font-weight: bold;
   	position: absolute;
       color: #28a745;
                       left: 0;}

.about-image img {
    width: 100%;
   height: 350px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-section {
          padding: 80px 0;
   background: #ffffff;
}

.contact-container {
  max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-section h2 {
    text-align: center;
	font-size: 2.5rem;
  margin-bottom: 1rem;
   color     :       #212529;
}

.contact-subtitle	{
    text-align    :      center;

	        font-size: 1.2rem;

	   color: #666;

	    margin-bottom: 3rem;
}

.contact-form {
  background: #f8f9fa;
  padding     :       3rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
   grid-template-columns  :       1fr 1fr;
    gap  :       1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
   display: flex;
  flex-direction   :     column;
}

.form-group label {
     font-weight: 600;
  margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
               padding: 12px 15px;
    border: 2px solid #e9ecef;
    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: #007bff; 

}

.submit-btn {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  padding: 15px 40px;
   border: none;
   border-radius: 8px;
   font-size: 1.1rem;
   font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
   width: 100%;
                    margin-top: 1rem; 
	
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3); 
	
}

.site-footer {
       background: #212529;
  color: white;
         padding: 40px 0 20px;
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
   display: grid;
    grid-template-columns: auto 1fr;
          gap: 3rem;
  align-items: start;
}

.footer-logo {
   height     : 40px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
   grid-template-columns     :  1fr 1fr;
      gap: 3rem; 

}

.company-details p {
   margin-bottom:   0.5rem;
    color: #adb5bd;
}

.footer-links {
   display :       flex;
	gap: 3rem;
}

.link-group h4 {
    margin-bottom: 1rem;
    color: white;
}

.link-group a {
        display: block;
    color: #adb5bd;
  text-decoration: none;
   margin-bottom: 0.5rem;
  transition: color 0.3s ease;

} 

.link-group a:hover {
    color: #007bff;
}

.footer-bottom {
	 border-top   :     1px solid #343a40;
    margin-top: 2rem;
	padding-top: 1rem;
   text-align     :       center;
  color: #6c757d;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-section h2 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}.about-hero

{
    padding: 120px 0 60px;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf0 100%);
  text-align  :   center; 
	

}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-hero h1 {
      font-size: 3rem;
    color: #212529;
    margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-hero-subtitle {
  font-size: 1.3rem;
    color    :        #6c757d;
   line-height: 1.6;
}

.company-story {
   padding: 80px 0;
	  background: #ffffff; 
	
}

.story-container {
   max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
  display: grid;
               grid-template-columns     :       2fr 1fr;
	gap: 4rem;
  align-items: center;
}

.story-content h2 {


               font-size: 2.5rem;
   color    :     #212529;
    margin-bottom :        2rem;
	}

.story-content p {
    font-size: 1.1rem;
   line-height: 1.7;
  color: #555;
  margin-bottom     :        1.5rem;
}

.story-stats
{
     display: grid;
  grid-template-columns: repeat(3, 1fr);
               gap: 2rem;
    margin-top: 3rem;
	}

.stat-item {
    text-align    :  center;
    padding: 1.5rem;
    background: #f8f9fa;
	border-radius: 10px;
}

.stat-item h3 {
   font-size    :      2.5rem;
  color: #007bff;
    margin-bottom: 0.5rem;
   font-weight: 700;
}

.stat-item p {
    color: #666;
   font-size: 0.9rem;
    margin: 0; 
	
}

.story-image img {
   width: 100%;
    height: 400px;
  object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.team-philosophy


{
   padding    :80px 0;
    background: #f8f9fa;
}

.philosophy-container


{
  max-width: 1200px;
   margin: 0 auto;
  padding  :   0 2rem;
}

.team-philosophy h2 {
    font-size: 2.5rem;
	 margin-bottom: 3rem;
    color: #212529;
    text-align: center;
}

.philosophy-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap   :      2.5rem;
}

.philosophy-item {
   background: white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   text-align: center;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
  transform: translateY(-5px);
}

.philosophy-item img {
   width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
 margin-bottom: 1.5rem;
}

.philosophy-item h3 {
	font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #666;
  line-height: 1.6;
}

.expertise-section {
    padding    :        80px 0;
     background: white;
}

.expertise-container
{
 max-width  :1200px;
    padding: 0 2rem;
   gap: 4rem;
   display: grid;
	margin: 0 auto;
   align-items: start;
  grid-template-columns: 1fr 1fr;
}


.expertise-text h2 {
    font-size: 2.5rem;
   color: #212529;
   margin-bottom: 1.5rem;
}

.expertise-text p {
   font-size: 1.1rem;
    color: #555;
   line-height: 1.7;
       margin-bottom: 2rem;
}

.competencies-list
	{
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.competency-group h4 {
	 color: #007bff;

	font-size: 1.2rem;

    margin-bottom: 1rem;
}

.competency-group ul {
  list-style: none;
    padding: 0;
}



.competency-group li {
   color: #666;
  padding-left: 1.5rem;
    position   :relative;
     padding: 0.3rem 0; 

}

.competency-group li:before {
  content: "•";
  color: #007bff;
   position: absolute;
   left: 0;
	font-weight: bold;
}

.expertise-image img {
  width: 100%;
    height: 350px;
  object-fit: cover;
    border-radius     :   12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.values-section
	{
   padding  :       80px 0;
  background: #f8f9fa;
}

.values-container {
    max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

.values-section h2 {
		 text-align: center;
   font-size: 2.5rem;
    color: #212529;
   margin-bottom :   3rem;
}

.values-grid {
    display     :grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem;
}

.value-card
	{
	   background: white;
    padding: 2rem;
  border-radius  :      12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;


}

.value-card:hover		{
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.value-card h3 {
    color: #007bff;
    font-size: 1.3rem;
  margin-bottom    :    1rem;


}

.value-card p {
  color: #666;
   line-height: 1.6;
}

.cta-about {
  background: linear-gradient(135deg, #343a40 0%, #495057 100%);
   padding: 60px 0;
  text-align: center;
}

.cta-about-content     {
   max-width: 600px;
   margin: 0 auto;
    padding: 0 2rem;
}

.cta-about h2 {

    color: white;
  font-size: 2.2rem;
    margin-bottom: 1rem;
	}

.cta-about p {
	  color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;

}

.btn-back-home	{
    background   :       white;
   color: #343a40;
    padding: 15px 30px;
     border-radius: 8px;
  text-decoration  :      none;
    font-weight    :600;
  transition: all 0.3s ease;
    display: inline-block;
}

.btn-back-home:hover {


  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255,255,255,0.3);

}

.thankyou-hero {
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
}

.thankyou-container {
  max-width: 1200px;
	margin: 0 auto;
  padding: 0 2rem;
   display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
         align-items: center;
}

.success-icon


{
  text-align: center;
   margin-bottom: 2rem;


}

.checkmark-circle {
    width: 80px;
     height: 80px;
       background: #28a745;
      border-radius: 50%;
       display: inline-flex;
      align-items: center;
       justify-content: center;
            margin-bottom: 1rem;
}

.checkmark {
  width: 25px;
  height: 15px;
   border: 3px solid white;
   border-top   :none;
  border-right  :none;
  transform: rotate(-45deg);
}

.thankyou-content h1 {
    font-size: 2.8rem;
   color :        #212529;
  margin-bottom: 1.5rem;
  text-align: center;
}

.thankyou-message {
   margin-bottom: 3rem;
  line-height: 1.6;
   color: #666;
    font-size: 1.2rem;
    text-align: center;
}

.next-steps h2 {
	    font-size: 2rem;

    color: #333;

    margin-bottom: 2rem;

  text-align: center;
}

.steps-list {
    margin-bottom: 3rem;
}

.step-item {
       display: flex;
       align-items: start;
  margin-bottom: 2rem;
    gap: 1.5rem;
}

.step-number {
    background: #007bff;
  color: white;
  width: 40px;
  height: 40px;
  border-radius    :     50%;
   display: flex;
   align-items: center;
    justify-content: center;
   font-weight: bold;
   flex-shrink: 0;
}

.step-content h3 {

	         font-size: 1.2rem;
   color: #333;
  margin-bottom: 0.5rem;}

.step-content p {
  color: #666; 
	   line-height: 1.6;
}

.additional-info    {
  background: #f8f9fa;
  padding: 2rem;
    border-radius: 12px;
      margin-bottom: 2rem;
}

.additional-info h2

{
   color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.additional-info p {
    color: #666;
          margin-bottom    :      1rem;
	
}

.preparation-list {
   list-style: none;
   padding: 0;
}

.preparation-list li {
               padding: 0.5rem 0;
  color  :#555;
  position: relative;
	padding-left: 2rem;
}

.preparation-list li:before {
  content: "→";
   position: absolute;
  left: 0;
   color    :       #007bff;
        font-weight: bold;

}  

.contact-reminder {
  background: #e8f4fd;

  padding: 1.5rem;

    border-radius: 10px;

   text-align: center;

   margin-bottom: 2rem;

    border-left: 4px solid #007bff;
}

.contact-reminder h3    {
  color: #333;
   margin-bottom: 1rem;

}

.contact-reminder p {
         color: #666;
   margin-bottom: 0.5rem;
}

.phone-highlight {
					font-size: 1.3rem; 
  color: #007bff; 
   font-weight: bold; 
    margin: 1rem 0;
}

.phone-hours {
         font-size: 0.9rem;
   color: #888;
}

.thankyou-actions {
	 display: flex;

		 gap: 1.5rem;

	    justify-content  :    center;

	   flex-wrap: wrap; 

}

.thankyou-actions .btn-primary 
 {
  background: linear-gradient(45deg, #007bff, #0056b3);
	 color: white;
	padding: 15px 30px;
  border-radius: 8px;
    text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease; 

}

.thankyou-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.thankyou-actions .btn-secondary {
	background: transparent;
  color: #007bff;
    padding :       15px 30px;
   border: 2px solid #007bff;
   border-radius: 8px;
    text-decoration: none;
  font-weight     :600;
    transition: all 0.3s ease;
}

.thankyou-actions .btn-secondary:hover{
  background: #007bff;
  color: white;
}

.thankyou-image img {
   width: 100%;
    height: 400px;
	object-fit   :        cover;
	border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .competencies-list {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-actions a {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content h2, .team-philosophy h2, .expertise-text h2, .values-section h2 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .next-steps h2 {
        font-size: 1.5rem;
    }
}.cookies-hero {
    padding:  120px 0 60px;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf0 100%);
          text-align: center;

}

.cookies-hero-content {
   max-width: 800px;
  margin: 0 auto;
   padding: 0 2rem;
}

.cookies-hero h1 {
	 font-size: 3rem;
   color: #212529;
        margin-bottom  :        1.5rem;
     font-weight: 700;
}

.cookies-hero-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
  line-height: 1.6;


}

.cookies-content {
    padding: 80px 0;
  background: #ffffff;
}

.cookies-content h2 {
  font-size:    2rem;
         color: #212529;
  margin-bottom   :       1.5rem;
}

.cookies-content p {
  font-size: 1.1rem;
  color:      #555;
  line-height: 1.7;
         margin-bottom: 1.5rem;
}



.cookies-list {
       list-style: none;
	padding: 0;


}

.cookies-list li {
  padding: 0.5rem 0;
    color: #555;
     position: relative;
  padding-left: 2rem;
}

.cookies-list li:before    {
  content: "•";
   position: absolute;
  left: 0;
   color: #007bff;
	font-weight: bold; 
	
}

.privacy-hero {
    padding: 120px 0 60px;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf0 100%);
    text-align: center;
}

.privacy-hero-content {
    max-width: 800px;
   margin: 0 auto;
 padding: 0 2rem;
}

.privacy-hero h1 {
   font-size: 3rem;
    color: #212529;
   margin-bottom: 1.5rem;
    font-weight: 700;
}  

.privacy-hero-subtitle {
  font-size: 1.3rem;
    color: #6c757d;
	 line-height: 1.6;
}

.privacy-content {
    padding: 80px 0;
   background: #ffffff;
	
}

.privacy-content h2   {
    font-size: 2rem;
   color: #212529;
  margin-bottom   : 1.5rem;
}

.privacy-content p {
    font-size: 1.1rem;
   color: #555;
    line-height: 1.7;
  margin-bottom: 1.5rem;
} @media (max-width: 768px) {
    .cookies-hero h1, .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .cookies-hero-subtitle, .privacy-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cookies-hero h1, .privacy-hero h1 {
        font-size: 2rem;
    }

    .cookies-content h2, .privacy-content h2 {
        font-size: 1.8rem;
    }
}