* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
} 

.container {
   max-width: 1200px;
   margin:  0 auto;
  padding: 0 20px;


}

.main-navigation {
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(10px); 
  position: fixed; 
   top     :0; 
   width: 100%; 
   z-index: 1000; 
  box-shadow: 0 2px 20px 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;
   height: 70px;
}

.brand-section .company-logo {
               height: 45px;
  width: auto;


}

.desktop-menu {

	  display: flex;
   list-style: none;
    gap: 40px;
	}

.nav-link {
  text-decoration: none;
    color: #34495e;
    font-weight: 500;
   transition: color 0.3s ease;
	position: relative;
}



.nav-link:hover,
.nav-link.active {
    color     :  #e74c3c;
	
}

.nav-link::after{
  content: '';
  position: absolute;
   bottom: -5px;
   left     : 0;
  width     :     0;
   height: 2px;
   background: #e74c3c;
    transition   :    width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle     {
  display:  none;
        flex-direction: column;
          background: none;
   border: none;
   cursor     :pointer;
  padding: 5px;
}

.mobile-toggle span {
   width: 25px;
  height  :  3px;
  background: #34495e;
   margin: 3px 0;
  transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
	 opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
   position: absolute;
    top: 100%;
       left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
   display: none;
   flex-direction: column;
  padding: 20px 0;
}

.mobile-menu.active {
   display     :     flex;
	
}

.mobile-link {
    padding: 15px 30px;
  text-decoration: none;
  color: #34495e;
    font-weight    :  500;
    border-bottom    :1px solid #ecf0f1;
  transition: background 0.3s ease;
}

.mobile-link:hover  
  {
  background: #f8f9fa;
               color: #e74c3c;
}

.hero-section {
   min-height: 100vh;
  display    :  flex;
    align-items: center;
    padding: 100px 20px 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :       white;
   position: relative;
  overflow: hidden;
	
}

.hero-section::before {
  content: '';
    position: absolute;
	 top  : 0;
    left: 0;
    right: 0;
         bottom: 0;
  background: rgba(0,0,0,0.2);
    z-index: 1;
}

.hero-content   {
  max-width: 1200px;
	  margin: 0 auto;
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	   gap: 60px;
	  align-items     :center;
	  position: relative;
		z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height  :  1.2;
   margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
   margin-bottom: 30px;
                    opacity: 0.9;
    line-height: 1.7;
}

.hero-actions {
		 display:flex;
  gap: 20px;
 flex-wrap   :        wrap;
}

.primary-button, .secondary-button {
   border-radius: 50px;
   transition :    all 0.3s ease;
	 padding: 15px 30px;
  font-weight: 600;
    text-decoration: none;
   display: inline-block;
}

.primary-button {
     background: #e74c3c;
   color  :white;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
     }

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.secondary-button	{
  background: transparent;
    color: white;
   border: 2px solid white;
}

.secondary-button:hover {
    background: white;
  color: #667eea;
  transform: translateY(-2px);
}

.hero-visual {
   position: relative;
}

.hero-visual img {
   width: 100%;
    height: auto;
    border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefits-section {
   padding: 100px 0;
  background  :    #f8f9fa;
}

.benefits-section h2 {
   text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2c3e50;
}

.benefits-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;

}

.benefit-card {
    background:white;
    padding: 40px 30px;
    border-radius: 15px;
  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);
}

.benefit-card.animate-in {
	opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {


  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.benefit-card h3 {
  font-size    :   1.4rem;
  margin-bottom   :    15px;
   color: #e74c3c;
}

.benefit-card p {
    color: #6c757d;
  line-height: 1.7;
}

.services-section {
        padding: 100px 0;
  background: white;
}



.services-section h2 {
          text-align: center;
    font-size: 2.5rem;
  margin-bottom: 60px;
   color: #2c3e50; 
	
}  

.services-showcase {
	   display: flex;
    flex-direction: column;
  gap: 80px;}

.service-item{
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
    align-items: center;
     opacity: 0;
  transform: translateX(-50px);
}

.service-item.animate-in {
       opacity: 1;
  transform: translateX(0);

}

.service-item:nth-child(even) {
  transform: translateX(50px); 

}

.service-item:nth-child(even) .service-details    {
	  order: -1;
     }

.service-item img {
   width: 100%;
   height: auto;
    border-radius:15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-details h3 {
  font-size: 1.8rem;
   margin-bottom: 20px;
  color: #2c3e50;
}

.service-details p
	{
  margin-bottom: 25px;
  color: #6c757d;
   line-height: 1.7;
}

.service-details ul {
   list-style  :        none;
        padding: 0; 

}

.service-details ul li {
    padding: 8px 0;
   color    :    #495057;
   position: relative;
   padding-left: 25px;
}

.service-details ul li::before {
  content: '✓';
    position: absolute;
  left: 0;
  color :    #e74c3c;
   font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	          color: white; 
	   padding: 100px 0; 
	  position: relative; 
	  overflow: hidden;
}

.cta-section::before {
  content: '';
   position: absolute;
   top: 0;
    left: 0;
        right :        0;
    bottom: 0;
  background: rgba(0,0,0,0.2);
 z-index: 1;
}

.cta-content {
   max-width: 1200px;
    margin: 0 auto;
  padding     :   0 20px;
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap     :   60px;
   align-items: center;
    position   :        relative;
  z-index: 2;}

.cta-content h2 {
  font-size: 2.5rem;
         margin-bottom: 25px;
         line-height: 1.3;
}

.cta-content p {
    font-size: 1.1rem;
   margin-bottom: 35px;
  opacity: 0.9;
   line-height: 1.7;
}

.cta-button {

  display: inline-block;
    background: #e74c3c;
   color: white;
   padding: 18px 40px;
    text-decoration   :  none;
   border-radius: 50px;
   font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.6); 

}

.cta-visual img {
   width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.methodology-section {
     padding: 100px 0;
  background: #f8f9fa;
}

.methodology-section h2 {
  text-align: center;
  font-size: 2.5rem;
                    margin-bottom: 60px;
	color    :       #2c3e50;
     }

.methodology-steps {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   :    40px;
}

.step {
  text-align: center;
   padding: 40px 20px;
   opacity: 0;
  transform: translateY(30px);
}

.step.animate-in {
   opacity: 1;
  transform: translateY(0);
     }

.step-number {
	font-size   :3rem; 
  font-weight: bold; 
   color: #e74c3c; 
   margin-bottom: 20px;
}

.step h3 {
   font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {


  color: #6c757d;
	               line-height: 1.7;


}

.contact-section {

   padding: 100px 0; 
  background: white;}

.contact-section h2 {
   text-align: center;
	 font-size: 2.5rem;
   margin-bottom: 60px;
   color: #2c3e50;
}

.contact-wrapper {

  display: grid;
   grid-template-columns: 1fr 1fr;
          gap: 60px;
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;}

.contact-info h3 {
    font-size: 1.8rem;
   margin-bottom: 20px;
  color: #2c3e50;
}

.contact-info p {
	margin-bottom: 30px;
  color: #6c757d;
    line-height: 1.7;
}

.contact-details


{
   display: flex;
   flex-direction: column;
   gap: 15px;
}

.contact-item {
         display: flex;

	    flex-direction: column;

	   gap: 5px;
}

.contact-item strong     {
   color: #e74c3c;
   font-weight: 600;
}

.contact-item span {
   color: #495057; 
	
}


.contact-form {
   background: #f8f9fa;
   padding: 40px;
			border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 25px;
    position: relative; 
	
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
   border     :  2px solid #e9ecef;
  border-radius: 10px;
   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.focused input,
.form-group.focused select,
.form-group.focused textarea    {
   border-color: #e74c3c;
}

.submit-button {
 font-size: 1.1rem;
 background: #e74c3c;
   color :  white;
   cursor: pointer;
    border-radius: 10px;
   transition: all 0.3s ease;
    border: none;
  padding: 18px;
  font-weight:       600;
   width: 100%;
}

.submit-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.3);
}


.site-footer {

    background: #2c3e50;
    color: white;
          padding: 60px 0 20px;

}

.footer-container {
  max-width: 1200px;
         margin: 0 auto;
   padding: 0 20px;
   display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer-brand {

  gap:   20px;
    display: flex;
  flex-direction: column;
	}

.footer-logo 
 {
   height: 100%;
  width: 100%;
  filter: brightness(0) invert(1);
}

.footer-brand p     {
    color: #bdc3c7;
	 line-height: 1.7;
}

.footer-links {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.link-group h4 {
    margin-bottom: 20px;
   color: #ecf0f1;
	font-size: 1.1rem;
}

.link-group ul {
	list-style: none;
}

.link-group ul li {
   margin-bottom: 10px;
}

.link-group ul li a {

    color: #bdc3c7;
    text-decoration: none;
  transition: color 0.3s ease;


}

.link-group ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {


                    border-top: 1px solid #34495e;
  margin-top: 40px;
   padding-top: 20px;
  text-align: center;
   color: #95a5a6;


}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .desktop-menu {
        display: none;
    }

    .hero-content,
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-item:nth-child(even) .service-details {
        order: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .hero-section,
    .cta-section {
        padding: 80px 20px 60px;
    }

    .benefits-section,
    .services-section,
    .methodology-section,
    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .benefits-section h2,
    .services-section h2,
    .methodology-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .primary-button,
    .secondary-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 25px;
    }
}.about-hero {
       min-height: 60vh;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    display: flex;
    align-items     :      center;
   position: relative;
  overflow: hidden;
    padding: 120px 20px 60px;
}

.hero-overlay

{
    position: absolute;
  top: 0;
   left: 0;
  right: 0;
               bottom: 0;
  background: rgba(0,0,0,0.3);
    z-index: 1;
}

.about-hero-content {
	 max-width  : 1200px;
    margin: 0 auto;
     display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 50px;
    align-items :      center;
    position    :   relative;
  z-index: 2;
}

.about-hero-content h1{
  font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight  :   700;
    line-height  :    1.2;
                    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}


.hero-image-wrapper img {
    width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.our-story {
   padding     :        80px 0;
  background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
    max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.story-text h2 {
	  font-size: 2.2rem;
   color: #2c3e50;
    margin-bottom: 30px;}

.story-text p {
    margin-bottom: 25px;
   color: #555;
	 line-height: 1.8;
   font-size: 1rem;
}

.story-visual img {
   width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.our-mission {
  padding: 80px 0;
   background     :       #f8f9fa;
}

.mission-wrapper {
     max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

   gap: 40px;
}

.mission-card {
  background: white;
   padding: 40px 30px;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
   text-align: center;
   transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.mission-card h3 {
    font-size: 1.5rem;
   color: #e74c3c;
	margin-bottom: 20px;
}

.mission-card p {
             color: #666;
   line-height: 1.7;


}

.expertise-section {
                    padding : 80px 0;
  background: white;
}

.expertise-section h2 {
  text-align   :center;
		 font-size: 2.5rem;
       color: #2c3e50;
   margin-bottom: 60px;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.expertise-item {


   text-align: center;
  padding: 30px 20px; 



}

.expertise-icon {
  width :80px;
   height: 80px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
   border-radius: 50%;
   display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
   font-weight: bold;
  margin: 0 auto 25px;
}

.expertise-item h4 {

					 font-size: 1.3rem;
    color: #2c3e50;
   margin-bottom: 15px;}

.expertise-item p {
       line-height: 1.6;
  color: #666;
	}

.approach-section {
      padding  :    80px 0;
   background: #f8f9fa;

}

.approach-content {
	max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.approach-text h2 {
   font-size: 2.2rem;
   color    :    #2c3e50;
    margin-bottom: 25px;

}

.approach-text p {
        color    :#555;
	 line-height: 1.8;
  margin-bottom: 30px;
}

.approach-points 
 {
  display   :flex;
	 flex-direction: column;
  gap: 20px;
}

.approach-point {
	 padding: 20px;
    background: white;
  border-radius: 8px;
   border-left: 4px solid #e74c3c;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
} 

.approach-point strong {
    color: #2c3e50;
   display: block;
   margin-bottom: 8px;
}

.approach-visual img {
  width: 100%;
          height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.achievements-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:        white;
					text-align: center;
}

.achievements-section h2 {


  font-size: 2.5rem;
   margin-bottom: 60px;
     }

.achievements-stats 
 {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
   max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
          font-size   :  3.5rem;
               margin-bottom: 10px;
   color: #fff;
    font-weight  :  bold;
}

.stat-label {
   font-size: 1.1rem;
               opacity: 0.9;
}

.why-choose-us   {
         padding: 80px 0;
  background: white;
     }

.why-choose-us h2 {
  text-align: center;
   font-size     :    2.5rem;
   color: #2c3e50;
    margin-bottom   :60px;
}

.reasons-grid {
   display: grid;
    grid-template-columns: 1fr;
  gap    :    50px;
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

.reason-item {
   display: grid;

	   grid-template-columns: 1fr 1fr;

	    gap: 40px;

	    align-items     :      center;
}

.reason-item:nth-child(even) {
    direction: rtl; 
	
}

.reason-item:nth-child(even) .reason-content {
  direction: ltr;
}

.reason-item img {
    width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.reason-content h4 {
  font-size: 1.6rem;
   color: #2c3e50;
   margin-bottom: 20px;
}

.reason-content p {
  color: #666;
         line-height: 1.7;
}

.thankyou-page {
  background: #f8f9fa;
 min-height: 100vh;
}

.thankyou-main


{
         padding: 120px 0 60px;
  min-height: calc(100vh - 200px);
}

.thankyou-container {
  max-width: 1200px;
          margin: 0 auto;
  padding: 0 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
} 

.success-content {
   background: white;
    padding:  50px;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.success-icon {
     text-align: center;
  margin-bottom: 40px;
}

.checkmark-circle {
    width: 80px;
   height: 80px;
    background: #27ae60;
	 border-radius: 50%;
  display: flex;
   align-items: center;
    justify-content: center;
  margin: 0 auto;
   position: relative;
}

.checkmark {
  width: 30px;
  height: 15px;
   border-left: 4px solid white;
    border-bottom   :     4px solid white;
  transform: rotate(-45deg);
}

.success-content h1	{
	  font-size: 2.2rem;
   color: #2c3e50;
    text-align  :center;
 margin-bottom: 25px;

}

.success-message {
    font-size: 1.1rem;
   color: #666;
  text-align     :   center;
   line-height: 1.7;
          margin-bottom: 40px;
}

.next-steps h2 {
   font-size: 1.6rem;
  color    :  #2c3e50;
   margin-bottom: 30px;
}

.steps-timeline {
    margin-bottom: 40px;
}

.timeline-step {
	display: flex;
   align-items: flex-start;
    gap: 20px;
  margin-bottom: 30px;
}

.step-icon {
   width: 40px;
    height: 40px;
      background: #e74c3c;
 color: white;
  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: #2c3e50;
  margin-bottom: 8px;
	
}

.step-content p


{
    color: #666;
   line-height :   1.6;
}

.while-waiting {
    margin-bottom: 40px;
}

.while-waiting h2 {
    font-size: 1.6rem;
  color: #2c3e50;
    margin-bottom  :        25px;
}

.waiting-suggestions {
       gap: 20px;
   flex-direction: column;
		display: flex;

}

.suggestion-item {

  padding  :        20px;
    background: #f8f9fa;
   border-radius: 8px;
   border-left: 4px solid #3498db;
     }

.suggestion-item h4 {

  color: #2c3e50;
   margin-bottom: 10px;
	}  

.suggestion-item p {
   margin-bottom: 15px;
  line-height: 1.6;
   color:    #666;
}

.suggestion-link {
   color: #3498db;
   text-decoration    :    none;
  font-weight: 500;
}

.suggestion-link:hover {
    text-decoration: underline;
}

.contact-reminder {
   border-radius: 8px;
    padding: 25px;
   margin-bottom: 40px;
   background :      #e8f5e8;
    text-align: center;
}  

.contact-reminder h3 {
   color: #2c3e50;
  margin-bottom: 15px;
}

.contact-reminder p  {
  color: #555;
   margin-bottom:     5px;
}

.back-actions	{
  display: flex;
   gap: 20px;
       justify-content: center;
  flex-wrap  :     wrap;
}

.primary-action     {
	    background: #e74c3c;
  color: white;
   padding: 15px 30px;
   text-decoration: none;
    border-radius    :  25px;
    font-weight: 600;
  transition: all 0.3s ease;

}

.primary-action:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.secondary-action {
       background: transparent; 
	  color: #e74c3c; 
	    padding: 15px 30px; 
	  text-decoration: none; 
	   border: 2px solid #e74c3c; 
	  border-radius: 25px; 
	    font-weight: 600; 
	    transition: all 0.3s ease;
}

.secondary-action:hover {
    color: white;
  transform: translateY(-2px);
    background    :    #e74c3c;
}

.thankyou-visual {
   position: sticky;
  top: 120px;
}

.thankyou-visual img {
    width: 100%;
               height     :auto;
        border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	
}@media (max-width: 768px) {
    .about-hero-content,
    .story-content,
    .approach-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero {
        padding: 100px 20px 50px;
        min-height: 70vh;
    }

    .mission-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reason-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reason-item:nth-child(even) {
        direction: ltr;
    }

    .success-content {
        padding: 30px;
    }

    .back-actions {
        flex-direction: column;
        align-items: center;
    }

    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .story-text h2,
    .approach-text h2,
    .why-choose-us h2,
    .achievements-section h2,
    .expertise-section h2 {
        font-size: 1.8rem;
    }

    .success-content h1 {
        font-size: 1.8rem;
    }

    .achievements-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}.cookies-policy, .privacy-policy {
   max-width: 800px;
     margin: 0 auto;
     padding: 40px 20px;
       line-height: 1.6;
}

.cookies-policy h1, .privacy-policy h1 {
  font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
	}

.cookies-policy h2, .privacy-policy h2  
  {
  font-size: 1.8em;
    margin-top: 30px;
  margin-bottom:15px;
    color   :   #444;
}

.cookies-policy p, .privacy-policy p {
   margin-bottom: 15px;
  color: #555;
}

.cookies-policy ul, .privacy-policy ul {
  list-style-type: disc;
    margin-left: 20px;
   margin-bottom: 15px;
}

.cookies-policy ul li, .privacy-policy ul li {
  margin-bottom: 10px;
}