* {
  margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
        color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 1rem 0;
    position: fixed;
    top: 0;
	width: 100%;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px; 
               margin: 0 auto; 
	padding: 0 20px; 
   display: flex; 
  justify-content: space-between; 
  align-items    :        center;
}

.nav-logo .logo-img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
  gap: 30px;


}

.nav-link {
	 color: white;

   text-decoration: none;

    font-weight:500;

    transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f0f0f0;
}

.nav-toggle     {
    display  :       none;
    flex-direction: column;
   cursor: pointer;
}

.bar    {
   width: 25px;
   height: 3px;
  background-color: white;
    margin: 3px 0;
  transition: 0.3s;
}

.hero-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
               padding: 120px 0 80px;
   min-height: 100vh;
    display: flex;
  align-items: center; 

}

.hero-content {
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;
}

.hero-text h1 {
  font-size: 3.2rem;
   font-weight: 700;
    color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text h2 {
    font-size: 1.8rem;
  color:      #f0f0f0;
   margin-bottom: 25px;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.1rem;
	color   :   white;
   margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
  display: flex;
   gap: 20px;
}

.btn-primary, .btn-secondary {
	padding: 15px 30px;
    text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;
}

.btn-primary {
  background: #ff6b6b;
    color : white;
  border: 2px solid #ff6b6b;
}

.btn-primary:hover {
   background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
   background: transparent;
  color: white;
   border: 2px solid white;
}

.btn-secondary:hover		{
  background: white;
   color  :#667eea;
}

.hero-image img {
    width: 100%;
  border-radius :    15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
} 

.services-section {
   padding  :      100px 0;
    background: #f8f9fa;
}

.services-section h2

{
    text-align: center;
    font-size: 2.5rem;
   margin-bottom: 60px;
    color :   #333;
  font-weight: 700;
     }

.services-grid {
   display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.service-card {
	background: white;
    border-radius: 15px;
   padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15); 

}

.service-card img {
   width: 100%;
    height: 200px;
   object-fit: cover;
   border-radius: 10px;
  margin-bottom   :      25px;
}

.service-card h3 {
  font-size: 1.5rem;

    margin-bottom: 15px;

    color: #333;

   font-weight: 600;
}

.service-card p {
	    line-height: 1.6;
   color: #666;
}

.about-preview {

    padding: 100px 0;
    background: white;

}

.about-content {
    display: grid;
  grid-template-columns     :1fr 1fr;
    gap: 60px;
	align-items: center;

}

.about-text h2 {
  font-size  :      2.5rem;
	font-weight: 700;
    margin-bottom: 30px;
   color: #333;
}

.about-text p {
    margin-bottom: 20px; 
   color:        #666; 
  line-height: 1.7; 
    font-size: 1.1rem;
}

.btn-outline {
  display: inline-block;
   padding: 15px 30px;
  border: 2px solid #667eea;
    color: #667eea;
        text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
		 transition  :        all 0.3s ease;
   margin-top: 20px;
     }

.btn-outline:hover {
    background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.about-image img {
   width: 100%; 
  border-radius: 15px; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 0;
   text-align     : center;
  color: white;


}



.cta-section h2 {

    font-size: 2.5rem;
   font-weight: 700;
    margin-bottom: 20px;


	}

.cta-section p {
	font-size :        1.2rem;
   margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
  margin-right   :  auto;

}

.btn-cta {
    background   :       #ff6b6b;
   color: white;
   padding: 18px 40px;
    text-decoration: none;
  border-radius :     50px;
	font-weight: 600;
         font-size: 1.1rem;
   transition: all 0.3s ease;
   display: inline-block;
}

.btn-cta:hover {
   background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.contact-section {
   padding  :       100px 0;
    background: #f8f9fa;
}

.contact-section h2 {
  text-align: center;
                    font-size: 2.5rem;
  margin-bottom: 60px;
        color: #333;
 font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
   font-weight: 600; 

}

.contact-item {
   margin-bottom :  30px;
}

.contact-item strong {
    color: #667eea;
  display: block;
  margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
  color: #666;
	 line-height: 1.6;

}

.contact-form {
                    background: white;
  padding: 40px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
                    display: block;
    margin-bottom: 8px;
    color: #333;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	 width:        100%;
  padding: 15px;
    border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
    transition: border-color 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
   border-color: #667eea;
}

.btn-submit   {

    background    :    #667eea;
  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%;}

.btn-submit:hover {
  background: #5a67d8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);

}

.footer {
    background    :        #2d3748;
    color: white;
	padding: 60px 0 20px;
}

.footer-content 
 {
    display: grid;
                    grid-template-columns: 1fr 3fr;
  gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img     {
  height: 50px; 
    width: auto;
}

.footer-links {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap :        40px;
}

.footer-column h4 {
   margin-bottom: 20px;
  color     :     #cbd5e0;
  font-weight: 600;
}

.footer-column a {
    display: block;
   color: #a0aec0;
  text-decoration: none;
    margin-bottom     :     10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column p

{
  color: #a0aec0;
    line-height   : 1.6;
    margin-bottom :10px;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
  padding-top: 20px;
    text-align: center;
   color: #a0aec0;
}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.4rem;
    }

    .services-section h2,
    .about-text h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}.about-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.about-hero-content h1 {
          font-size: 3.5rem;
    font-weight: 700;
       margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
   font-size:    1.3rem;
   margin-bottom:   50px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-stats {
   display: flex;
   justify-content: center;
   gap     :60px;
  margin-top: 40px;

}

.stat-item     {
   text-align: center;
}

.stat-number {

    display: block;
   font-size: 3rem;
	 font-weight: 700;
  color: #f093fb;
	margin-bottom: 8px;
	}

.stat-label   {
    font-size: 0.95rem;
    opacity :    0.8;
}

.mission-section {
    padding: 100px 0;
  background: white;
	
}

.mission-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;
}

.mission-text h2 {
	         font-size: 2.5rem;
   margin-bottom  :   30px;
    color     :   #333;
    font-weight: 700;}

.mission-text p {
    color: #666; 
  font-size: 1.1rem; 
   margin-bottom: 25px; 
    line-height: 1.8;
}

.mission-image img {
    width:100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.methodology-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.methodology-section h2 {
       text-align: center;
   font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
   font-weight: 700;}

.methodology-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.method-card {
   background: white;
   padding: 40px 30px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align  :center;
          transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
}  

.method-icon {
    width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
  border-radius: 50%;
    display: flex;
    align-items: center;
   justify-content: center;
   font-size: 1.8rem;
		font-weight: 700;
               margin :     0 auto 25px;
}

.method-card h3 {
    font-size     :   1.4rem;
    margin-bottom: 15px;
    color :     #333;
  font-weight: 600;
}

.method-card p {
  line-height: 1.6;
  color: #666;
	
}

.team-section {
   padding: 100px 0;
  background: white;
}

.team-section h2 {
                    text-align: center;
    font-size: 2.5rem;
    margin-bottom     :      60px;
   color  :#333;
  font-weight: 700;
	
}

.team-grid {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

	    gap: 40px;
}

.team-member {
   background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover		{
  transform: translateY(-8px);
}

.team-member img   {
    width: 100%;
  height: 250px;
  object-fit: cover;
}

.member-info {
   padding: 30px;
}

.member-info h3 {
	  font-size: 1.5rem;
 margin-bottom: 8px;
   color: #333;
  font-weight: 600;
	}

.member-role {
   color: #667eea;
    font-weight: 500;
    margin-bottom: 15px;
 font-size: 1rem;
}

.member-info p:last-child {
   color: #666;
    line-height: 1.6;
  margin: 0;
}

.approach-section {
  padding   :      100px 0;
    background: #f8f9fa;
}

.approach-content {
  display  :     grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
       align-items :   center;
}

.approach-image img   {
   width: 100%;
    border-radius   :15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.approach-text h2 {
  font-size: 2.5rem;
   margin-bottom: 40px;
	color: #333;
    font-weight: 700;
	
}

.approach-list {
	display: flex; 
	  flex-direction: column; 
	  gap: 25px;
}

.approach-item h4 {
 color: #667eea;
    font-size: 1.2rem;
   margin-bottom :8px;
  font-weight: 600;
}

.approach-item p {
    line-height: 1.6;
       color: #666;
}

.values-section {
    background: white;
      padding: 100px 0;
}

.values-section h2 {

   text-align:  center;
    font-size: 2.5rem;
   margin-bottom: 60px;
    color: #333;
  font-weight: 700;
     }



.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px; 
	
}

.value-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:      white;
   padding: 40px 30px;
   border-radius: 15px;
   text-align     :       center;
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {

	   font-size    :    1.4rem;
   margin-bottom:        20px;
  font-weight: 600;
	}

.value-card p {

  line-height: 1.6;
  opacity: 0.9;

}

.thankyou-hero {

	  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
 padding: 120px 0 80px;
    text-align: center;
    color  :   white;
  min-height   :        70vh;
      display: flex;
   align-items: center;

}



.thankyou-content h1 {
   font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); 

}

.thankyou-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
   font-weight: 300;
}

.thankyou-message {
      max-width: 600px;
	margin  :   0 auto;


}

.thankyou-message p {
		 font-size: 1.1rem;
  line-height: 1.7;
   opacity: 0.95;


}

.thankyou-icon     {
   margin-bottom: 40px;
}

.success-checkmark {
    width: 80px;
    height:    80px;
    border-radius: 50%;
    display: block;
         stroke-width: 3;
   stroke: #4bb71b;
	stroke-miterlimit: 10;
  margin: 0 auto 20px;
   box-shadow     :      inset 0px 0px 0px #4bb71b;
   animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
   position: relative;
}

.success-checkmark .check-icon {
               width: 56px;
  height: 56px;
  position: relative;
  border-radius: 50%;
  display: block;
   stroke-width   :        3;
  stroke  :     #fff;
   stroke-miterlimit: 10;
    margin: 12px auto;
  animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark .check-icon::before {
  content: '';
  position: absolute;
    top: 50%;
    left     :       50%;
    width: 20px;
    height: 10px;
	border: solid #4bb71b;
   border-width: 0 0 3px 3px;
  transform: translate(-50%, -60%) rotate(-45deg);
    animation: checkmark .6s ease-in-out .9s forwards;
   opacity: 0;
}

.icon-circle {
         width: 80px;
               height: 80px;
    position:     absolute;
    top: 0;
  left: 0;
   border-radius: 50%;
  background: rgba(75, 183, 27, 0.2);
  animation: circle-fill .4s ease-in-out .4s forwards;
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}

@keyframes checkmark {
    100% {
        opacity: 1;
    }
}.next-steps-section {
    padding:       100px 0;
     background: #f8f9fa;
} 

.next-steps-section h2 {
       text-align: center;
    font-size: 2.5rem;
  margin-bottom: 60px;
               color: #333;
  font-weight: 700;}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
   background: white;
  padding: 40px 30px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
   transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
    width    :       60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
    border-radius: 50%;
  display: flex;
    align-items: center;
 justify-content   : center;
  font-size: 1.5rem;
    font-weight    :   700;
  margin: 0 auto 25px;
} 

.step-card h3

{
	 font-size: 1.4rem;
  margin-bottom: 15px;
   color: #333;
   font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.6;
	 margin-bottom    :       20px;
}

.step-time {
    border-radius: 20px;
   padding: 8px 16px;
  font-weight :    500;
    background   : #f093fb;
  color: white;
    font-size   :     0.9rem;
}

.while-wait-section {
          padding: 100px 0;
          background: white;
}

.wait-content {


    display   :   grid;
    grid-template-columns  :        1fr 1fr;
  gap  :       60px;
               align-items: center;


}

.wait-text h2 {
  font-size: 2.5rem; 
   margin-bottom  :  30px; 
  color  :    #333; 
    font-weight: 700;
}

.wait-text p {
    margin-bottom: 30px;
	color :   #666;
    line-height: 1.7;
  font-size :    1.1rem;
}

.benefits-list {
  margin-bottom: 30px;
}

.benefit-item {
               display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.benefit-icon {
     color  :   #4bb71b;
   font-weight: 700;
   margin-right: 15px;
       font-size :      1.2rem;
}

.wait-image img {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-info-section {
    padding: 80px 0;

   background: #f8f9fa;
}

.contact-info-section h2 {
  text-align: center;
       font-size: 2.5rem;
   margin-bottom: 60px;
    color: #333;
    font-weight:   700;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap     :30px;
}



.contact-card {
  background: white;
    padding: 40px 30px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
               text-align: center;
   transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);

}



.contact-icon {

  font-size: 3rem;
   margin-bottom   :     20px;
  display   :       block;

}

.contact-card h3 {
    font-size: 1.3rem;
   margin-bottom: 15px;
  color: #333;
          font-weight: 600;
}

.contact-card p {
 color: #666;
    line-height: 1.6;
   margin-bottom    :       10px;
}

.contact-card small {


  color: #999;
   font-size: 0.9rem;
	}

.emergency-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5722 100%);

	  padding: 60px 0;

	  text-align: center;

	    color:   white;

}

.emergency-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.emergency-content p {
   font-size: 1.1rem;
  margin-bottom: 30px;
 opacity: 0.9;
  max-width: 600px;
         margin-left: auto;
    margin-right: auto;
}

.btn-emergency {
  background: white;
      color:   #ff6b6b;
    -moz-border-radius: 50px;
   padding: 18px 35px;
  -webkit-transition: all 0.3s ease;
    text-decoration: none;
  -o-transition: all 0.3s ease;
	-webkit-border-radius: 50px;
  border-radius  :    50px;
   font-weight: 600;
    font-size: 1.1rem;
       -moz-transition: all 0.3s ease;
   transition: all 0.3s ease;
	display: inline-block;
}

.btn-emergency:hover {
    background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}


.nav-link.active {
    color: #f093fb;
  font-weight: 600;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .mission-content,
    .approach-content,
    .wait-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methodology-grid,
    .team-grid,
    .values-grid,
    .steps-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .emergency-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .mission-text h2,
    .approach-text h2,
    .wait-text h2 {
        font-size: 2rem;
    }
    
    .method-card,
    .step-card,
    .contact-card,
    .value-card {
        padding: 30px 20px;
    }
    
    .member-info {
        padding: 25px 20px;
    }
}.privacy-section, .cookies-section {


  padding    :  100px 0;
    background    : #f8f9fa;
}

.privacy-section h2, .cookies-section h2 {
   text-align: center;
    font-size :      2.5rem;
    margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}


.privacy-section h3, .cookies-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.privacy-section p, .cookies-section p {
    font-size: 1.1rem;
   color     :  #666;
    line-height: 1.7;
  margin-bottom: 30px;
}