* {
   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-color: #ffffff;
}

.container {
    max-width    :1200px;
          margin: 0 auto;
   padding   :     0 20px;
}

.main-header {
   background  :    #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
  width: 100%;
   top: 0;
          z-index: 1000;
    transition: all 0.3s ease;
}  

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navigation-wrapper {


    padding: 0 20px;
	}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
  display: flex;
    justify-content: space-between;
   align-items: center;
  height: 70px;
}

.company-logo {
   height: 45px;
    width    :        auto;
}

.nav-menu {
  list-style: none;
    display: flex;
  gap: 2rem;
	
} 

.nav-menu a {
   text-decoration     :       none;
   color: #333;
    font-weight   :       500;
   transition: color 0.3s ease;
	position: relative;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
   width: 0;
    height: 2px;
   bottom: -5px;
   left: 0;
    background-color: #2c5aa0;
       transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;


}

.menu-toggle {
  display: none;
  flex-direction: column;
 cursor: pointer;
	 gap: 4px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.menu-toggle.active .burger-line:nth-child(1)

{
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
	}

.menu-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);

}

main {
	margin-top: 70px;
}

.hero-area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	padding: 80px 20px;
          min-height: 600px;
   display  :   flex;
   align-items: center;

}

.hero-content {
    max-width: 1200px;
   margin: 0 auto;
   display: grid;
    grid-template-columns   :        1fr 1fr;
                    gap: 60px;
   align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-description {
                    font-size: 1.2rem;
    margin-bottom: 2rem;
   opacity: 0.9;
}

.hero-buttons {
    display: flex;
			gap: 1rem;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
   padding    :        15px 30px;
  text-decoration: none;
   border-radius:   50px;
    font-weight    :      600;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-button {
  background: #ff6b6b;
   color: white;
   border: 2px solid #ff6b6b;
}

.primary-button:hover {
    background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.secondary-button {
   background: transparent;
    color: white;
  border: 2px solid white; 

}

.secondary-button:hover {
  background    :      white;
    color: #667eea;
}

.hero-image img {
	width: 100%;
   height: auto;
	 border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview {
  padding: 100px 20px;
  background: #f8f9fa;
}



.services-overview h2 {
  text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
     }

.services-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
  max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: all 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: 20px;}

.service-card h3 {
    font-size: 1.5rem;
   margin-bottom: 15px;
   color: #2c3e50;
}

.service-card p {
  color: #666;
	line-height: 1.6;
}

.career-process {
 padding: 100px 20px;
  background: white;
}

.career-process h2 {
  text-align: center;
   font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
  max-width: 1200px;
         margin: 0 auto;
}

.step-item {
	  text-align: center;
  position: relative;
	}

.step-number {
    width: 80px;
  height: 80px;
   border-radius  : 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
       display: flex;
  align-items: center;
      justify-content   :      center;
   font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
  font-size:        1.3rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.step-item p


{
   color: #666;
  line-height: 1.6;
}

.cta-section {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color     :white;
     padding: 100px 20px;}

.cta-section .container {
  max-width: 1200px;
}

.cta-content{
	  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center; 

}

.cta-content h2 {
    font-size :       2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
		 opacity: 0.9;
}

.cta-button {
   display: inline-block;
    background: #ff6b6b;
    color: white;
   padding: 18px 35px;
    text-decoration: none;
   border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
   background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.cta-image img {
    width: 100%;
   height: auto;
    border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
	
}

.testimonials {
  padding: 100px 20px;
    background: #f8f9fa;
}

.testimonials h2 {
     text-align: center;
   font-size: 2.5rem;
	margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
    max-width: 1200px;
   margin: 0 auto;
}

.testimonial-card		{
    background: white;
  padding: 30px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 position  :      relative;
}


.testimonial-card p {
      font-style: italic;
   margin-bottom: 20px;
  line-height: 1.6;
       color: #555;
	}

.testimonial-author strong {
  color: #2c3e50;
    display: block;
}

.testimonial-author span {
  color: #666;
   font-size: 0.9rem;
}

.contact-section {
   padding: 100px 20px;
  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 2fr;
    gap: 60px;
    max-width     :1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
  margin-bottom: 30px;
   color: #2c3e50;
}

.contact-item {
    margin-bottom     :25px;
}

.contact-item strong {
	margin-bottom: 5px;
    color: #2c3e50;
    display: block;
}

.contact-item p {


    color: #666;
  line-height: 1.5;


}

.consultation-form {
      background  :      #f8f9fa;
   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;
    font-weight     :    600;
          color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
	border: 2px solid #ddd;
   border-radius: 8px;
    font-size : 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus	{
    outline    :none;
    border-color: #667eea; 
	
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 15px 40px;
   border: none;
  border-radius: 50px;
    font-size: 16px;
	font-weight: 600;
	cursor: pointer;
  transition: all 0.3s ease;
     width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.main-footer {

	   background: #2c3e50;
  color: white;
  padding: 60px 20px 20px;

	}

.footer-content {


    max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:      40px;
}

.footer-logo {

	    height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
               margin-bottom: 15px;
     }

.footer-section h4 {
       margin-bottom: 20px;
   font-size    :     1.2rem;
 color: #ecf0f1;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
	color: #bdc3c7;
		 text-decoration: none;
   transition :       color 0.3s ease;
}

.footer-section ul li a:hover {
      color:  #3498db;
	


}

.footer-section p {
    color: #bdc3c7;
  line-height :      1.6;
}

.footer-bottom {
   border-top: 1px solid #34495e;
               margin-top: 40px;
    padding-top: 20px;
   text-align     :       center;
    color: #95a5a6;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-overview h2,
    .career-process h2,
    .testimonials h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .consultation-form {
        padding: 25px;
    }
    
    .hero-area {
        padding: 60px 20px;
    }
    
    .services-overview,
    .career-process,
    .testimonials,
    .contact-section {
        padding: 60px 20px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 120px 20px 80px;
   text-align: center;
}

.about-hero h1  {
   font-size: 3rem;
  font-weight: 700;
   margin-bottom: 1rem;
}

.hero-subtitle {
   font-size: 1.3rem;
    opacity: 0.9;
   max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.company-story {
    padding: 100px 20px;
      background: white;
}

.story-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
         align-items: center;
    max-width : 1200px;
   margin: 0 auto;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
	margin-bottom: 30px;
}

.story-text p {


  color     :    #666;
  line-height: 1.8;
   margin-bottom: 20px;
                    font-size: 1.1rem;
     }

.story-image img {
  width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.our-mission    {
    padding: 100px 20px;
   background: #f8f9fa;
}

.our-mission h2 {
	text-align: center;
  font-size :        2.5rem;
   color: #2c3e50;
    margin-bottom     :   60px;
}

.mission-grid {
     display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
    max-width: 1200px;
	margin: 0 auto;
} 

.mission-card {
   background  :white;
	 padding: 40px;
	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 {
  transform: translateY(-5px);

}

.mission-card h3 {
	font-size: 1.5rem;
  color: #2c3e50;
   margin-bottom: 20px;
}

.mission-card p {
    color: #666;
	line-height   : 1.6;
}

.team-section

{
    padding: 100px 20px;
  background: white;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom  :    60px;
}

.team-grid {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	  gap: 40px;

	    max-width    :      1200px;

	    margin: 0 auto;
}

.team-member {
  background: #f8f9fa;

  padding: 30px;

  border-radius   :        15px;

  text-align: center;

   transition: all 0.3s ease;
}

.team-member:hover{
	         background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}

.team-member img {
      width    :       100%;
   height: 250px;
   object-fit    :cover;
  border-radius: 10px;
   margin-bottom: 20px;
}



.team-member h3   {
  font-size: 1.3rem;
  color: #2c3e50;
    margin-bottom: 5px;
}

.position {
    color: #667eea;
   font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing    :      1px;
}

.team-member p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.approach-section		{


    padding: 100px 20px;
    background: #f8f9fa; 

     }

.approach-section h2 {
  text-align: center;
    font-size   :  2.5rem;
	color: #2c3e50;
	margin-bottom: 60px;
}

.approach-content {
   display: grid; 
	  grid-template-columns: 1fr 1fr; 
	  gap: 60px; 
	    align-items: center; 
	    max-width: 1200px; 
		 margin  :   0 auto;
}

.approach-text h3 {
     font-size: 1.8rem;
    color    :   #2c3e50;
  margin-bottom: 20px;
}

.approach-text h4		{
    font-size: 1.3rem;
    color: #667eea;
  margin: 30px 0 15px;
}

.approach-text p {
   color   :       #666;

    line-height: 1.8;

   margin-bottom: 20px;
}

.approach-list {
   list-style: none;
  padding  :    0;
}

.approach-list li {
    line-height: 1.6;
    margin-bottom: 10px;
    color  :   #666;
  position: relative;
   padding-left  :       25px;
}

.approach-list li::before {
  content: "→";
   color: #667eea;
  font-weight: bold;
 position: absolute;
    left: 0;

}

.approach-image img {
  width   :       100%;
  height   :  auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.achievements-section {
    padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.achievements-section h2 {
                    text-align: center;
   font-size: 2.5rem;
  margin-bottom     :       60px;
}

.stats-grid  {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  max-width: 1000px;
    margin: 0 auto;
}

.stat-item
	{


  text-align: center;

}

.stat-number {
        font-size: 3rem;
    font-weight: 700;
  margin-bottom   :       10px;
   color: #ff6b6b;


}

.stat-label {
  font-size: 1.1rem;
    opacity: 0.9;
}

.why-choose-us {
    padding: 100px 20px;
   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: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item {
	  background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
   text-align: center;
    transition: all 0.3s ease;
}

.reason-item:hover {
  background   :  white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.reason-item h3 {
    font-size: 1.3rem;
	 color: #2c3e50;
    margin-bottom   :        15px;
}

.reason-item p   {
   color: #666;
   line-height: 1.6;
}

.cta-about
{
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-about-content h2 {
  font-size: 2.5rem;
   margin-bottom: 20px;
}

.cta-about-content p {
  font-size: 1.2rem;
   margin-bottom: 30px;
   opacity: 0.9;
}

.thankyou-hero {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
       color: white;
  padding: 120px 20px 80px;
    text-align: center;

	}

.thankyou-content

{
   max-width: 800px;
    margin   :  0 auto;
}

.success-icon {
       margin-bottom: 30px;
}

.checkmark-circle {
   width: 100px;
   height: 100px;
    border  :    3px solid white;
  border-radius: 50%;
    margin: 0 auto;
   display: flex;
	align-items    :     center;
	justify-content: center;
  position: relative;
}

.checkmark {
     width: 40px;
   height: 20px;
   border-left: 4px solid white;
    border-bottom   :   4px solid white;
  transform: rotate(-45deg);
}@keyframes checkmark-animation {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    50% {
        opacity: 1;
        transform: rotate(-45deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
}.thankyou-hero h1 {
    font-size: 3rem;
    font-weight: 700;
  margin-bottom     :  20px;
}

.thankyou-message {
  font-size: 1.3rem;
  opacity: 0.9;
     line-height: 1.6;
}

.next-steps {
    padding    :100px 20px;
   background: white;
}

.next-steps h2 {

	  color: #2c3e50;
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 60px;
	
	}

.steps-timeline {
	max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
     display: flex;
   align-items: flex-start;
   margin-bottom: 50px;
    opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
	}

.timeline-item.animate-in  {
               opacity: 1;
  transform: translateX(0);
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border-radius: 50%;
    display :  flex;
          align-items:        center;
         justify-content: center;
  font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
  flex-shrink: 0;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color     :       #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p
	{
   margin-bottom: 10px;
  color: #666;
     line-height: 1.6;
}

.timeline-duration {
    color: #28a745;
         font-weight: 600;
  font-size: 0.9rem;
}

.while-waiting {
   padding: 100px 20px;
  background: #f8f9fa;
}

.while-waiting h2 {
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-size: 2.5rem;
}

.waiting-content {
	display: grid;
    grid-template-columns: 2fr 1fr;
  gap: 60px;
    align-items: flex-start;
   max-width :      1200px;
   margin: 0 auto;
}

.waiting-text h3 {
  font-size: 1.8rem;
   color: #2c3e50;
    margin-bottom: 20px;
}

.waiting-text p {
   color: #666;
   line-height: 1.8;
	 margin-bottom: 25px;
}

.preparation-list {
 list-style: none;
  padding: 0;
   margin: 25px 0;
}

.preparation-list li {
  color: #666;
     line-height: 1.6;
   margin-bottom: 15px;
  padding   :15px;
    background: white;
    border-radius: 8px;
  border-left     :    4px solid #667eea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
   opacity: 0;
  transform: translateX(-20px);
   animation: slide-in 0.6s ease forwards;
}@keyframes slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}.waiting-image img {
   width    :100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.resources-section {
  padding  :  100px 20px;
   background  :white;
}

.resources-section h2 {
    text-align: center;
  font-size:     2.5rem;
	color: #2c3e50;
   margin-bottom: 30px;


}

.resources-intro
{
    text-align:     center;
   font-size: 1.2rem;
   color: #666;
    margin-bottom :      60px;
   max-width :800px;
    margin-left: auto;
  margin-right: auto;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap :      40px;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-card {
       background: #f8f9fa;
    border-radius: 15px;
       padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card:hover {
   background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.resource-card img {
  width: 100%;
   height: 200px;
        object-fit: cover;
     border-radius: 10px;
  margin-bottom: 20px;
}

.resource-card h3 {
	    font-size: 1.3rem;
    color: #2c3e50;
        margin-bottom: 15px;}

.resource-card p {
       color: #666;
  line-height: 1.6;
}


.contact-reminder {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align :        center;

}

.reminder-content h2 {
       font-size: 2.2rem;
  margin-bottom: 20px;
     }

.reminder-content p {
  font-size: 1.1rem;
	 margin-bottom: 40px;
  opacity: 0.9; 

}

.contact-info-reminder    {
  display: flex;
	justify-content: center;
   gap: 60px;
  flex-wrap: wrap;
}

.contact-detail   {
                    text-align: center;
}

.contact-detail strong {
    font-size: 1.1rem;
   margin-bottom     : 8px;
  display :block;
}

.contact-detail span {
		font-size: 1.2rem;
  opacity: 0.9;
}

.back-to-site {

        text-align: center;
    padding: 80px 20px;
    background : #f8f9fa;
	}

.back-content h3 {
    font-size   :2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.back-content p {
    font-size: 1.1rem;
  color: #666;
   margin-bottom:      30px;
}

.back-buttons {
    display: flex;
	gap: 20px;
    justify-content   :       center;
  flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content,
    .approach-content,
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-info-reminder {
        flex-direction: column;
        gap: 30px;
    }
    
    .back-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .thankyou-hero h1 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-hero,
    .company-story,
    .our-mission,
    .team-section,
    .approach-section,
    .achievements-section,
    .why-choose-us,
    .cta-about,
    .thankyou-hero,
    .next-steps,
    .while-waiting,
    .resources-section {
        padding: 60px 20px;
    }
}.cookies-section,
.privacy-section {
  padding: 100px 20px;
   background: #f8f9fa;
}

.cookies-section h1,
.privacy-section h1 {
 text-align: center;
   font-size: 2.5rem;
   margin-bottom: 40px;
  color  :      #2c3e50;
}

.cookies-section h2,
.privacy-section h2 {
   margin-top: 30px;
  color:    #2c3e50;
    margin-bottom     :     15px;
    font-size: 1.8rem;
}

.cookies-section p,
.privacy-section p

{
    color: #666;
          line-height    :    1.6;
    margin-bottom :     20px;
}

.cookies-section ul,
.privacy-section ul {
    list-style: disc;
    padding-left: 20px;
	margin-bottom  : 20px;
}

.cookies-section ul li,
.privacy-section ul li {
  color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}@media (max-width: 768px) {
    .cookies-section,
    .privacy-section {
        padding: 60px 20px;
    }

    .cookies-section h1,
    .privacy-section h1 {
        font-size: 2rem;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}