* {
    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: #ffffff;
}

.main-navbar{
  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;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);

}

.nav-wrapper {
                    display: flex;
    justify-content :       space-between;
    align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
	margin: 0 auto;
}

.navbar-logo {
   height: 45px; 
	  width: auto; 

}

.nav-links {
  gap: 2rem;
    list-style: none;
   display: flex;
}

.nav-links a {
    text-decoration: none;
    color: #333;
   font-weight: 500;
   transition   :     color 0.3s ease;
   position   :   relative;
}

.nav-links a:hover {

	   color   :     #2c5aa0;
}

.nav-links a::after 
 {
  content: '';
  position: absolute;
	width: 0;
   height: 2px;
   bottom: -5px;
   left: 0;
         background-color: #2c5aa0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after    {
  width: 100%;
}

.burger-menu {
   display    :none;

	  flex-direction   :  column;

		cursor: pointer;

	   gap: 4px;
}

.burger-line {
         width: 25px;
  height: 3px;
  background: #333;
    transition: all 0.3s ease;
}

.burger-active .burger-line:nth-child(1) {
     transform: rotate(-45deg) translate(-5px, 6px);


}

.burger-active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero-section {
    display: grid; 
   grid-template-columns: 1fr 1fr; 
    align-items: center; 
	min-height: 100vh; 
    padding: 120px 5% 0; 
  max-width   :    1400px; 
   margin   :0 auto; 
   gap:   3rem; 
	
}

.hero-content h1     {
    font-size: 3.2rem;
   font-weight: 700;
		color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
    display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}



.primary-btn, .secondary-btn {
  padding: 15px 30px;
   font-size: 1.1rem;
    font-weight: 600;
  text-decoration: none;
   border-radius: 8px;
	transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn {
  background: linear-gradient(135deg, #2c5aa0, #3d6bb3);
   color: white;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.primary-btn:hover {


  background: linear-gradient(135deg, #1e3f73, #2c5aa0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.secondary-btn {
   background: transparent;
    color: #2c5aa0;
   border: 2px solid #2c5aa0;


}

.secondary-btn:hover {
    background: #2c5aa0;
               color: white;
  transform: translateY(-2px);
}

.hero-visual {
   position: relative;
}

.hero-image {
    width: 100%;
   height: auto;
  border-radius:    15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview    {
  padding: 100px 0;
  background   :     #f8f9fa;
}

.container-fluid {
    margin: 0 auto;
		 max-width   : 1400px;
  padding: 0 5%;
}

.services-overview h2
{
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
   color: #1a1a1a;
}

.services-grid {
				 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
    margin-top:    3rem;
}

.service-card {


    background: white;
    border-radius: 15px;
   overflow :    hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity     :        0;
  transform: translateY(30px);
}

.service-card.animate-in {
       opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-img {
    width: 100%;
   height: 220px;
    object-fit: cover;
}

.service-card h3 {


   font-size: 1.5rem;
  margin: 1.5rem;
   color: #2c5aa0;


} 

.service-card p 
 {
   padding: 0 1.5rem 2rem;
    color: #666;
   line-height : 1.6; 
	
}

.cta-section {
  background: linear-gradient(135deg, #2c5aa0, #3d6bb3);
	color: white;
   padding: 80px 0;
  text-align    :     center;
    opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.cta-section.animate-in {
   opacity: 1; 
	  transform: translateY(0);
	
}

.cta-content {

  max-width  :   800px;
	margin: 0 auto;
   padding: 0 5%; 
}

.cta-section h2  
  {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
}



.cta-section p    {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
   opacity: 0.9;
} 

.cta-button {
   background: white;
   color: #2c5aa0;
    padding: 18px 35px;
   font-size: 1.2rem;
   -webkit-border-radius: 8px;
   font-weight: 600;
    -moz-border-radius: 8px;
  text-decoration: none;
      border-radius: 8px;
    transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.expertise-showcase     {
   padding: 100px 0;
    opacity: 0;
  transform: translateY(30px);
    transition: all 0.6s ease;
}

.expertise-showcase.animate-in {
         opacity    :  1;
  transform: translateY(0);
}

.content-wrapper {
  display: grid;
   margin: 0 auto;
   gap: 4rem;
    align-items: center;
   padding: 0 5%;
   max-width: 1400px;
   grid-template-columns: 1fr 1fr;
}

.text-content h2 {
    font-size: 2.5rem; 
    margin-bottom: 1.5rem; 
  color: #1a1a1a;
}

.text-content p   {
   font-size: 1.1rem;
   color: #666;
	margin-bottom: 2rem;
  line-height: 1.7; 

} 

.benefits-list {
  list-style   :    none;
  margin-top: 2rem;
}

.benefits-list li {
          position: relative;
   color: #333;
    padding: 10px 0;
    padding-left: 30px;
}

.benefits-list li::before {
  content: '✓';
   position    :       absolute;
                    left: 0;
  color: #2c5aa0;
   font-weight: bold;
    font-size: 1.2rem;
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-section {
  padding: 100px 0; 
    background: #f8f9fa;
}

.contact-container     {
    max-width :        800px;
  margin: 0 auto;
   padding: 0 5%;
}

.contact-section h2 {
       text-align: center;
  font-size: 2.5rem;
   margin-bottom: 1rem;
         color: #1a1a1a;
}

.contact-intro {
   text-align: center;
	 font-size   :        1.1rem;
   color: #666;
  margin-bottom: 3rem;
   line-height: 1.6;
}

.contact-form {
    background  :        white;
  padding: 3rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
          position: relative;
}

.form-row {
  grid-template-columns: 1fr 1fr;
    gap     :  1.5rem;
  display: grid;
}

.form-group label {
                    display: block;
	margin-bottom: 8px;
    font-weight: 600;
    color:    #333;
}  

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 15px;
   border: 2px solid #e1e5e9;
  border-radius: 8px;
                    font-size: 1rem;
    transition: all 0.3s ease;
  background    :       #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus  {
   outline: none;
   border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group.focused label {
	 color: #2c5aa0;
}

.submit-btn {
    width: 100%;
    padding: 18px;
  background: linear-gradient(135deg, #2c5aa0, #3d6bb3);
               color: white;
    border: none;
   border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover	{
  background: linear-gradient(135deg, #1e3f73, #2c5aa0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

.main-footer {
       background: #1a1a1a;
    color: white;
   padding: 60px 0 20px;
}

.footer-content {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
    max-width: 1400px;
   margin: 0 auto;
  padding   :     0 5%;
   margin-bottom: 3rem;
}

.footer-logo {
    height: 40px; 
	               width    :        auto; 
	    margin-bottom: 1rem; 
	  filter: brightness(0) invert(1);
}

.company-description {
	 color  :       #ccc;
  line-height: 1.6;
	
}

.footer-section h4 {
   margin-bottom    : 1.5rem;
   color: white;
    font-size: 1.2rem;
}

.footer-links {
	  list-style: none;
     }

.footer-links li     {
	margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
   color: white;
}

.contact-info p {
   margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-bottom     {


  border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
   padding-left: 5%;
  padding-right   :     5%;


}

.footer-bottom p {
	color: #999;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 5% 50px;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-overview h2 {
        font-size: 2.2rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-content {
        order: 2;
    }

    .image-content {
        order: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-overview h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .nav-wrapper {
        padding: 1rem 3%;
    }

    .hero-section {
        padding: 90px 3% 40px;
    }

    .container-fluid {
        padding: 0 3%;
    }
}.about-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 150px 0 100px;
                    text-align: center;
}

.about-hero-content {
  max-width: 800px;
    margin: 0 auto;
    padding   :    0 5%;
}

.about-hero h1 {
  font-size     :    3.5rem;
   font-weight: 700;
   color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-subtitle {
  font-size: 1.4rem;
   color: #666;
  line-height: 1.6;
}

.company-story

{
   padding: 100px 0;
}

.story-container  
  {
  display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
	max-width :   1400px;
         margin: 0 auto;
  padding: 0 5%;
}

.story-text h2 {
   font-size: 2.8rem;
	  margin-bottom: 2rem;
	   color  :    #1a1a1a;
     }

.story-text p {
                    font-size: 1.2rem;
    color: #666;
  line-height: 1.7;
   margin-bottom: 1.5rem;
}

.mission-img {
    width: 100%;
        height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.our-approach {
   background: #f8f9fa;
   padding: 100px 0;
}

.approach-wrapper {
  max-width: 1400px;
    margin: 0 auto;
  padding: 0 5%;
}

.approach-wrapper h2 {
   text-align: center;
       font-size: 2.8rem;
  margin-bottom: 3.5rem;
     color: #1a1a1a;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
}

.approach-card {
   background    :  white;
  padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition  :  transform 0.3s ease;
   text-align: center; 
	
}

.approach-card:hover {

  transform: translateY(-8px);
}

.approach-card h3 {
   font-size: 1.6rem;
    color: #2c5aa0;
    margin-bottom :      1.5rem;

}

.approach-card p {
  color: #666;
   line-height: 1.6;
   font-size: 1.1rem;
}

.expertise-areas {
    padding: 100px 0;
}

.expertise-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
    max-width: 1400px;
   margin: 0 auto;
   padding   :  0 5%;
}

.expertise-content h2 {
	font-size: 2.8rem;
			margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.expertise-list {
    display: flex;
		flex-direction: column;
  gap: 2rem;
     }

.expertise-item h4 {


  color:     #2c5aa0;
  font-size: 1.4rem;
   margin-bottom: 0.8rem;
}

.expertise-item p {
  color: #666;
   line-height: 1.6;
   font-size: 1.05rem;
}

.expertise-img {
   width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.our-methodology {
       background: #f8f9fa;
    padding: 100px 0;
}

.methodology-wrapper {
    max-width    :        1400px;
    margin: 0 auto;
  padding: 0 5%;
}

.methodology-wrapper h2 {
    text-align: center;
  font-size: 2.8rem;
    margin-bottom :     3.5rem;
  color   :      #1a1a1a;
}

.methodology-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
	
}

.step-card {
    background: white;
   padding: 2.5rem;
          border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover		{
  transform: translateY(-5px);
}

.step-number {
   display: inline-flex;
    align-items: center;
          justify-content: center;
   width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2c5aa0, #3d6bb3);
  color: white;
   border-radius  :   50%;
   font-size :     1.4rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
  color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-card p

{
	color: #666;
   line-height:   1.6;
	
}



.values-section {
   padding: 100px 0;
}

.values-content {
  max-width: 1400px;
    margin: 0 auto;
  padding: 0 5%;
}

.values-content h2 {
   text-align: center;

  font-size: 2.8rem;

   margin-bottom: 3.5rem;

          color: #1a1a1a;
}



.values-grid   {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap  :        2.5rem;
}

.value-item    {
    text-align: center;
    padding: 2rem;
}

.value-item h3 {
    font-size: 1.6rem;
    color: #2c5aa0;
   margin-bottom: 1rem;
}

.value-item p     {
	color     :   #666;
   line-height: 1.6;
    font-size: 1.1rem;
}

.cta-about 
 {
  background: linear-gradient(135deg, #2c5aa0, #3d6bb3);
  color: white;
    padding: 80px 0;
  text-align     :      center;
}

.cta-about-content {
   max-width: 700px;
   margin: 0 auto;
   padding: 0 5%;
}

.cta-about h2   {
   font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-about p {
		font-size: 1.2rem;
   margin-bottom: 2.5rem;
    opacity: 0.9;


}

.cta-about-btn {
       transition: all 0.3s ease;
   padding: 18px 35px;
  display: inline-block;
  background: white;
    color: #2c5aa0;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
	}

.cta-about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.thankyou-main {
	min-height: 100vh;

   padding: 120px 0 50px;

  background  :  #f8f9fa;
}

.thankyou-container {

  max-width     :      1200px;
	margin  :       0 auto;
  padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
          gap: 4rem;
	align-items: center;
}

.thankyou-content {
   background: white;
    padding: 3rem;
    border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.success-icon
{
    text-align: center;
	 margin-bottom: 2rem;


}



.checkmark {
      width: 80px;
  height: 80px;
   border-radius: 50%;
  background: linear-gradient(135deg, #28a745, #20c997);
	margin: 0 auto;
  position: relative;
}

.checkmark::after 
 {
  content: '✓';
  position: absolute;
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
   color: white;
  font-size: 2.5rem;
  font-weight: bold;


}


.thankyou-content h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
   margin-bottom:     1.5rem;
}

.thankyou-message {
    text-align: center;
    font-size    :      1.2rem;
    color: #666;
    line-height: 1.6;
        margin-bottom: 2.5rem;
}

.next-steps h2 {
	 font-size: 2rem;
   color: #1a1a1a;
    margin-bottom: 2rem;
  text-align: center;}

.steps-list {
   display: flex;
    flex-direction: column;
  gap:   1.5rem;
         margin-bottom    :        2.5rem;
}

.step-item {
       display     :flex;
   align-items: flex-start;
  gap: 1rem;
}

.step-icon    {
   display: flex;
	align-items: center;
    justify-content: center;
	width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #2c5aa0, #3d6bb3);
   color: white;
   border-radius: 50%;
    font-weight: 700;
 flex-shrink: 0; 
	
}

.step-text h3 {


    font-size: 1.3rem;
   color: #1a1a1a;
  margin-bottom: 0.5rem;


}



.step-text p {
  color: #666;
  line-height: 1.5;
  font-size   :    1rem;
} 

.additional-info {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
  margin-bottom: 2rem;
}

.additional-info h2 {
   margin-bottom :1rem;

	   font-size  :1.8rem;

	  color: #1a1a1a;
}

.additional-info p {
   color: #666;
    line-height: 1.6;
}

.action-buttons {
   display: flex;
   gap: 1rem;
  justify-content: center;
   flex-wrap: wrap;
}

.primary-return-btn,
.secondary-return-btn {
    border-radius: 8px;
    display: inline-block;
  font-weight: 600;
  padding: 15px 30px;
    font-size: 1.1rem;
  transition     :      all 0.3s ease;
          text-decoration: none;
}  

.primary-return-btn {
  background: linear-gradient(135deg, #2c5aa0, #3d6bb3); 
   color: white; 
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.primary-return-btn:hover {
  background: linear-gradient(135deg, #1e3f73, #2c5aa0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.secondary-return-btn {
   background: transparent;
  color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.secondary-return-btn:hover {
       background: #2c5aa0;
	color: white;
  transform: translateY(-2px);
}

.thankyou-image {
	width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .story-text h2 {
        font-size: 2.2rem;
    }

    .approach-wrapper h2,
    .expertise-content h2,
    .methodology-wrapper h2,
    .values-content h2 {
        font-size: 2.2rem;
    }

    .expertise-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-visual {
        order: 1;
    }

    .expertise-content {
        order: 2;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-return-btn,
    .secondary-return-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 130px 0 80px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .story-text h2,
    .approach-wrapper h2,
    .expertise-content h2,
    .methodology-wrapper h2,
    .values-content h2 {
        font-size: 1.8rem;
    }

    .approach-card,
    .step-card {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }
}.cookies-section, .privacy-section {
	padding    : 120px 0;
}

.cookies-content, .privacy-content {
     max-width: 800px;
    margin: 0 auto;

}

.cookies-content h1, .privacy-content h1 {
   font-size: 2.8rem;
   color  :        #1a1a1a;
   margin-bottom: 2rem;
    text-align: center;


}

.cookies-content h2, .privacy-content h2 {
   font-size: 1.8rem;
  color: #2c5aa0;
   margin: 1.5rem 0;
}

.cookies-content p, .privacy-content p {
  font-size   :  1.1rem;
   color: #666;
 margin-bottom: 1.5rem;
         line-height: 1.7;
}

.cookies-content ul, .privacy-content ul {
  margin-bottom: 2rem;
}