*   {
    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;
}

.navbar {

    position: fixed;
  top: 0;
	width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.1); 
	
     }

.nav-wrapper {
    max-width    :        1200px;
   margin   :    0 auto;
    padding: 0 20px;
  display: flex;
  justify-content: space-between;
    align-items    :       center;
    height: 70px;
}

.logo-section .logo {
   width: auto;
          height: 45px;
}

.nav-links {
   display: flex;
  gap: 2rem;
}

.nav-links a {
       text-decoration: none;
  color: #333;
 font-weight: 500;
   transition: color 0.3s ease;
  position: relative;


}

.nav-links a:hover {
   color: #e74c3c;
}

.nav-links a::after {
   bottom:     -5px;
   left    :       0;
  content: '';
	 transition : width 0.3s ease;
  background  :  #e74c3c;
  width     :0;
   height: 2px;
    position: absolute;
}

.nav-links a:hover::after {
  width  :       100%;

}

.burger-menu {
  display: none;
         flex-direction: column;
   cursor: pointer;
	 gap: 4px;
}

.burger-menu span {

   width: 25px; 
   height: 3px; 
   background: #333; 
	 transition :       0.3s; 
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
  opacity   :       0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
	background: white;
    padding     :    20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu a {
	   display: block;
   padding: 10px 0;
  text-decoration: none;
	 color: #333;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-section{
     padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   min-height: 80vh;
   display: flex;
  align-items: center;
}

.hero-container {
  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;
   margin-bottom: 1.5rem;
    font-weight: 700;
    line-height  :  1.2;
}

.hero-content p {
	font-size: 1.2rem;
					margin-bottom: 2.5rem;
   opacity: 0.9;
}

.hero-buttons {
   display:   flex;
  gap:   1.5rem;
   flex-wrap: wrap;
}

.cta-primary, .cta-secondary 
 {


    cursor: pointer;
  font-weight: 600;
	-o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
   border-radius: 50px;
   transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
   text-decoration: none;
   display: inline-block;
   padding: 15px 30px;
     }

.cta-primary {
  background: #e74c3c; 
   color: white; 
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cta-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.cta-secondary   {
    background: transparent;
    color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.cta-secondary:hover {
	  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);


}

.hero-image {
  text-align: center;
}

.hero-img {
  width: 100%; 
   max-width: 500px; 
      border-radius: 20px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-section {
    padding     :      100px 20px;
    background: #f8f9fa;
}  

.services-section h2 {
  text-align: center;
         font-size :        2.5rem;
    margin-bottom: 3rem;
	 color: #2c3e50;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
    background: white;
   border-radius: 15px;
    padding: 2rem;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition    :     transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
   width    :  100%;
  height: 200px;
   object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;}

.service-card h3 {
   font-size: 1.5rem;

    margin-bottom: 1rem;

    color: #2c3e50;
}

.service-card p {


    color: #666;
    line-height: 1.6;
     }

.expertise-section {
	   padding: 100px 20px;
   background: white;


}

.expertise-content    {
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
      align-items: center;
}

.expertise-text h2 {
    font-size: 2.5rem;
   margin-bottom: 2rem;
  color: #2c3e50;
}

.point {
  margin-bottom: 2rem;
}

.point h4  
  {
      font-size: 1.3rem;
   color: #e74c3c;
  margin-bottom: 0.5rem;
     }

.point p {
 color: #666;
  line-height: 1.6;
}

.expertise-image img {
   width:100%;
	     border-radius: 15px;
	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section   {
   padding: 80px 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
 text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.cta-content p
{
    font-size: 1.2rem;
  margin-bottom    :        2.5rem;
  opacity     :      0.9;
	 max-width   : 800px;
  margin-left: auto;
    margin-right: auto;
}

.cta-button {
  display: inline-block;
	background: white;
    color: #e74c3c;
                    padding: 18px 40px;
  text-decoration: none;
   border-radius: 50px;
	font-weight: 600;
	 font-size: 1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.testimonials-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.testimonials-section h2 {
   text-align    :    center;
  font-size: 2.5rem;
  margin-bottom  :      3rem;
  color: #2c3e50;
}

.testimonials-grid  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   text-align   :        center;
   position: relative;
}

.testimonial p {
  line-height: 1.6;
 color: #555;
   font-size: 1.1rem;
   margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial .author {
	 font-weight: 600;
    color: #e74c3c;
}

.contact-section {
    padding: 100px 20px;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: start;
}

.contact-info h2 {
	font-size:  2.5rem;
    margin-bottom: 1.5rem;
         color: #2c3e50;
}

.contact-info p {
    font-size: 1.1rem;
  color: #666;
   margin-bottom: 2.5rem;
 line-height: 1.6;
}

.contact-details {
   display: flex;
    flex-direction: column;
      gap: 1.5rem;
}

.detail strong {
  color  :#e74c3c;
  font-size: 1.1rem;
}

.detail p {
    margin-top: 0.5rem;
    color: #666;
}

.contact-form {
   background: #f8f9fa;
  padding    :       2.5rem;
    border-radius     :      15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 

}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
    padding: 15px;
	 border   :    2px solid #e0e0e0;
   border-radius: 8px;
    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: #e74c3c;
}

.form-group select {
  cursor: pointer;
}



.submit-btn    {
    background: #e74c3c;
  width: 100%;
      transition: all 0.3s ease;
  padding: 18px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    border: none;
  border-radius     :    8px;
    font-size: 1.1rem;
}

.submit-btn:hover {
   background: #c0392b;
  transform: translateY(-2px);
}

.footer {
   background: #2c3e50;
   color: white;
  padding: 60px 20px 20px;
}

.footer-content    {
               display: grid;
    grid-template-columns: 2fr 1fr 1fr;
   gap: 3rem;
   margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 1rem;
	 opacity: 0.8;
          line-height    :      1.6;
}

.footer-logo {
   height    :      40px;
  width:    auto;
  filter: brightness(0) invert(1);
}

.link-group h4 {
    margin-bottom: 1rem;
   color: #e74c3c;
}

.link-group a {
   display: block;
  color: rgba(255,255,255,0.8);
   text-decoration: none;
   margin-bottom: 0.5rem;
   transition: color 0.3s ease;
}

.link-group a:hover {
	color: #e74c3c;
}

.footer-contact h4 {
     margin-bottom: 1rem;
   color: #e74c3c; 
	
}

.footer-contact p {
    opacity:      0.8;
  line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
    opacity:    0.6; 

}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .service-card,
    .testimonial,
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
   padding: 120px 20px 60px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
   text-align: center;
}

.about-hero-content h1 {
   font-size: 3rem;
    margin-bottom: 1.5rem;
  font-weight: 700;


}

.about-hero-content p

{
	 font-size: 1.2rem;
    max-width: 800px;
  margin: 0 auto;
         opacity: 0.9;
   line-height: 1.6;
}

.our-story-section {
  padding    : 100px 20px;
  background: white;
}

.story-content
{
   display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.story-text p {
   margin-bottom: 1.5rem;

	         color: #555;

	    line-height :       1.7;

	  font-size :      1.1rem;
}

.story-image img  {
	 width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 

}

.mission-vision-section {
   padding: 80px 20px;
   background: #f8f9fa;
}

.mission-vision-grid {
      display: grid;
   grid-template-columns: 1fr 1fr;
      gap: 3rem;
          max-width: 1000px;
  margin: 0 auto;
}

.mission-card, .vision-card {
    background: white;
  padding: 3rem;
                    border-radius: 15px;
    text-align    :      center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
   color   :  #e74c3c;
  margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
   font-size: 1.1rem;
  line-height: 1.6;
   color: #666;
}

.approach-section {
               padding: 100px 20px;
  background: white;
}

.approach-section h2 {


  text-align: center;
  font-size: 2.5rem;
                    margin-bottom: 3rem;
   color: #2c3e50;

}

.approach-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
   max-width    :  1200px;
    margin: 0 auto;
}



.approach-item {
   text-align: center; 
   padding: 2rem; 
  border-radius: 15px; 
  background: #f8f9fa; 
  transition: all 0.3s ease; 
  border: 2px solid transparent;
}

.approach-item:hover {
  background: white;
    border-color: #e74c3c;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.1);
}

.approach-number {
  font-weight: 700;
  -moz-border-radius: 50%;
    justify-content: center;
   border-radius: 50%;
  -webkit-border-radius: 50%;
  transition: all 0.3s ease;
    font-size: 1.5rem;
   align-items: center;
  background: #e74c3c;
	margin: 0 auto 1.5rem;
    width    :      60px;
   display: flex;
     height: 60px;
 color: white;
}

.approach-item:hover .approach-number {
  transform: scale(1.1);
}

.approach-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
  color: #666;
  line-height: 1.6;
}

.expertise-areas-section {
  padding: 100px 20px;
    background: #f8f9fa;
}

.expertise-content {
   display: grid;
                    grid-template-columns: 1fr 2fr;
  gap: 4rem;
	align-items: start;
}

.expertise-image img {
   width  : 100%;
	 border-radius : 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-text h2 {
  font-size    :    2.5rem;
  margin-bottom: 2rem;
    color: #2c3e50; 

}

.expertise-list {
	display: flex;
   flex-direction: column;
    gap: 2rem;
}

.expertise-item {
   padding: 1.5rem;
    background: white;
  border-radius: 10px;
          border-left: 4px solid #e74c3c;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}


.expertise-item h4 
 {
	 color: #e74c3c;
   margin-bottom    :  0.5rem;
  font-size: 1.2rem;


}

.expertise-item p {

  line-height: 1.6;
  color: #666;

}

.why-choose-section {
  padding:      100px 20px;
    background: white;
}

.why-choose-section h2 {
  text-align: center;
	font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.why-choose-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.why-card {
  text-align: center;
    padding: 2rem;
   border-radius: 15px;
  background: #f8f9fa;
   transition     :   all 0.3s ease;
}

.why-card:hover	{
       background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transform: translateY(-5px);
	}

.why-card img {
    width: 100%;
   height: 200px;
   object-fit: cover;
   border-radius: 10px;
   margin-bottom: 1.5rem;
}

.why-card h4 {
  font-size: 1.4rem;
  color: #2c3e50;
    margin-bottom: 1rem;
}

.why-card p {
	line-height: 1.6;
    color: #666;
}

.values-section {

  padding: 100px 20px;
  background: #2c3e50;
   color: white;
}

.values-section h2 {
  text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
   color: white;
}

.values-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
	 max-width: 1200px;
   margin: 0 auto;
}  

.value-item


{
  text-align: center;
      padding: 2.5rem;
     background: rgba(255,255,255,0.05);
      border-radius: 15px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255,255,255,0.1);
                  transition: all 0.3s ease;

}  

.value-item:hover {
	  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
	}

.value-item h4 {
          font-size: 1.4rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.value-item p {
  opacity: 0.9;
	 line-height  :  1.6;
}

.thankyou-section {
   padding: 120px 20px 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  min-height: 90vh;
    display: flex;
   align-items: center;
}

.thankyou-content {
          max-width: 1000px;
  margin: 0 auto;
       text-align   :   center;
   color: white;
}

.thankyou-icon	{
  margin-bottom    :     2rem;
}

.checkmark-circle {
     width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.2);
   border-radius: 50%;
     display: flex;
    align-items: center;
                    justify-content: center;
   margin: 0 auto;
    animation    :  checkmarkPulse 2s infinite; 
	
}

.checkmark {
     width: 40px;
    height: 20px;
    border: 4px solid white;
   border-top: none;
               border-right: none;
  transform: rotate(-45deg);
    animation: checkmarkDraw 0.8s ease-in-out;


}@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes checkmarkDraw {
    0% { transform: rotate(-45deg) scale(0); }
    100% { transform: rotate(-45deg) scale(1); }
}.thankyou-content h1 {
  font-weight: 700;
    font-size: 3rem;
	 margin-bottom: 1.5rem;
}

.thankyou-message {
   font-size: 1.3rem;

	  margin-bottom: 3rem;

	   opacity :     0.9;

	    max-width: 700px;

	    margin-left: auto;

	      margin-right: auto;

	  line-height: 1.6;
}

.next-steps {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
    border-radius: 20px;
   padding  :3rem;
  margin     :        3rem 0;
  border: 1px solid rgba(255,255,255,0.2);
}

.next-steps h2 {
             font-size: 2rem;
    margin-bottom: 2.5rem;
    color: white;
	
}

.steps-grid {
 display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
   border-radius     :        15px;
    text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.step-number{
	 width: 50px;
   height: 50px;
  background: #e74c3c;
   color: white;
    border-radius: 50%;
  display: flex;
   align-items    :       center;
  justify-content: center;
    font-size: 1.3rem;
   font-weight: 700;
   margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
        margin-bottom: 1rem;
  color: white;
}

.step-item p {
   opacity: 0.9; 
    line-height: 1.5; 
  font-size: 0.95rem;
}

.while-waiting {
  background :       white;
   color: #333;
    border-radius: 20px;
	padding: 3rem;
  margin: 3rem 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.while-waiting h2 {
	font-size: 2rem;
   margin-bottom: 1rem;
 color: #2c3e50;
  text-align: center;
}

.while-waiting > p {
       text-align: center;
         margin-bottom: 2.5rem;
  color: #666;
   font-size: 1.1rem;
}

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.resource-card {
    background   :    #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
	 text-align: center;
    transition: all 0.3s ease;
  border: 2px solid transparent;
}

.resource-card:hover {
    background: white;
    border-color: #27ae60;
  box-shadow: 0 10px 25px rgba(39, 174, 96, 0.1);
  transform: translateY(-3px);
}

.resource-card img {
    width: 100%;
  height: 150px;
    object-fit: cover;
    border-radius: 10px;
   margin-bottom: 1rem;
}

.resource-card h4  
  {
   color: #2c3e50;
  margin-bottom   :      0.8rem;
    font-size: 1.1rem;
}


.resource-card p {
  color: #666;

  line-height: 1.5;

   font-size: 0.9rem;
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
    border-radius     :      20px;
    padding: 2.5rem;
  margin: 3rem 0;
  border: 1px solid rgba(255,255,255,0.2);
 text-align: center;
}

.contact-reminder h2 {
    color: white;
  font-size: 1.8rem;
   margin-bottom: 1rem;
}

.contact-reminder > p

{
  margin-bottom: 1.5rem;
    opacity : 0.9;
}

.contact-info p {
       margin: 0.5rem 0;
   font-size: 1.1rem;

}

.contact-info strong {
	color: #e74c3c; 
	
}

.action-buttons {
    display: flex;
        gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary, .btn-secondary {
   display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
		 border-radius: 50px;
    font-weight: 600;
  transition: all 0.3s ease;
	cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #e74c3c;
	 color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover
{
   background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4); 
	
}

.btn-secondary {
     background: rgba(255,255,255,0.2);
   color: white;
  border: 2px solid rgba(255,255,255,0.3);


}

.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .story-content,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 80%;
        text-align: center;
    }
}.cookies-section, .privacy-section {
   padding: 100px 20px;
    background  : #f8f9fa;
}


.cookies-section h1, .privacy-section h1 {
   text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
	color: #2c3e50;
}

.cookies-content, .privacy-content {
     max-width: 800px;
    margin: 0 auto;
	line-height: 1.6;
    color   :  #666;
}

.cookies-content h2, .privacy-content h2 {


  font-size: 1.8rem;
   margin-top: 2rem;
   margin-bottom: 1rem;
   color: #e74c3c;}

.cookies-content p, .privacy-content p {
  margin-bottom: 1.5rem;
}

.cookies-content ul, .privacy-content ul {
   list-style-type: disc;
   margin-left  :     2rem;
   margin-bottom:     1.5rem;
}

.cookies-content ul li, .privacy-content ul li		{
	    margin-bottom: 0.5rem;}@media (max-width: 768px) {
    .cookies-section, .privacy-section {
        padding: 80px 20px;
    }

    .cookies-section h1, .privacy-section h1 {
        font-size: 2rem;
    }

    .cookies-content h2, .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cookies-section, .privacy-section {
        padding: 60px 20px;
    }

    .cookies-section h1, .privacy-section h1 {
        font-size: 1.8rem;
    }

    .cookies-content, .privacy-content {
        padding: 0 10px;
    }
}