* {
   box-sizing: border-box;
   margin: 0;
    padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2d3748;
   font-size: 16px;
   background-color: #ffffff;
}

img {
  max-width: 100%;
    height: auto;
   display    : block;
}

a {
  text-decoration:        none; 
  color: inherit;
} 

.navigation-wrapper {
    position: fixed;
   top: 0;
  width: 100%;
   z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;

}

.nav-scrolled  
  {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
	}

.nav-container {
  max-width    :    1200px;
	margin: 0 auto;
          display :  flex;
    align-items: center;
   justify-content  :        space-between;
  padding: 1rem 2rem;
}

.company-logo {

	   height: 45px;
           width     :  auto;

}

.menu-items {
    display  :       flex;
  gap: 2rem;
    align-items: center;
}

.nav-link {
 font-weight: 500;
  color: #4a5568;
   transition: color 0.3s ease;
   position: relative;
} 

.nav-link:hover, .nav-link.active {
   color: #3182ce;
}

.nav-link.active::after {
  content: '';
 position: absolute;
  bottom: -5px;
   left:        0;
   width: 100%;
	 height: 2px;
    background-color: #3182ce;
}

.burger-menu {
    display: none;
   flex-direction: column;
  cursor: pointer;
    gap: 4px;
}

.burger-line

{
  width: 25px;
   height: 3px;
   background-color: #4a5568;
   transition: all 0.3s ease;
}

.burger-active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-active .burger-line:nth-child(3) {

  transform: rotate(-45deg) translate(6px, -6px);
	

}

.hero-section {
    padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
	 display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
	gap     : 4rem;
	align-items: center;
}

.content-wrapper h1 {
    font-size: 3.5rem;
    color:     #ffffff;
    margin-bottom: 1.5rem;
  line-height :      1.2;
  font-weight: 700;
}  

.hero-description {
  font-size: 1.2rem;
  color: #e2e8f0;
    margin-bottom: 2rem;
  line-height: 1.7;


}

.cta-buttons   {
  display: flex;
    gap: 1rem;
   flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
  border-radius: 8px;
   font-weight    :600;
  transition     :  all 0.3s ease;
  cursor  :     pointer;
   border: 2px solid;
     display: inline-block;
}

.primary-btn {
   background-color: #3182ce;

	    color: white;

	    border-color: #3182ce;
}

.primary-btn:hover {
   background-color: #2c5aa0;
  transform: translateY(-2px);
}


.secondary-btn {
   background-color: transparent;
    color: white;
	 border-color: white;
}

.secondary-btn:hover {
  background-color: white;
   color  :     #3182ce;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.section-container {
	 max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
}

.section-title {
   text-align: center;
   font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
   font-weight: 700;
}

.services-overview {
   padding: 80px 0;
  background-color: #f7fafc;
}

.services-grid {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2rem;
}

.service-card {
		background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align   :    center;
    transition: all 0.3s ease;
    opacity: 0;
  transform: translateY(30px);
	}

.service-card.animate-in {
    opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.service-icon-wrapper {

	   margin-bottom: 1.5rem;
     }

.service-icon     {
  font-size: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width   :      80px;
  height: 80px;
   border-radius  :   50%;
	display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
   color: white;
}

.service-card h3     {
	   font-size: 1.5rem; 
  color: #2d3748; 
   margin-bottom: 1rem; 
  font-weight: 600;
}



.service-card p {

  color  :   #718096;
   line-height: 1.6;
	}

.expertise-showcase {
  padding  :      80px 0;
}

.expertise-content    {
    display: grid;
   grid-template-columns: 1fr 1fr;
 gap:  4rem;
    align-items: center;
}

.expertise-text {
 opacity: 0;
  transform: translateX(-30px);
}

.expertise-text.animate-in {
    opacity: 1;
  transform: translateX(0);
    transition: all 0.8s ease;
}

.expertise-text h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
   font-weight    :        700;
}

.expertise-text p {
		color:#4a5568;
  margin-bottom: 2rem;
    font-size:     1.1rem;
	line-height: 1.7;
	
}

.benefits-list {
  list-style: none;
	margin-left: 0;
}

.benefits-list li {
   padding: 0.5rem 0;
	color:     #4a5568;
      position: relative;
    padding-left: 2rem;
}

.benefits-list li:before {
  content: '✓';
    position: absolute;
   font-size: 1.2rem;
  color: #38a169;
  font-weight: bold;
    left: 0;
}

.expertise-visual {
	   opacity: 0;
  transform: translateX(30px);
	}

.expertise-visual.animate-in {
   transition :      all 0.8s ease 0.2s;
  transform: translateX(0);
  opacity: 1;
}

.expertise-visual img {
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-section  
  {
  padding: 80px 0;
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}


.cta-container {
    max-width: 1200px;
 margin: 0 auto;
  padding: 0 2rem;
   display :       grid;
 grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
}  

.cta-content h2 {
    font-size: 2.5rem;
   color: white;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p		{
   color: #bee3f8;
	font-size    :    1.1rem;
  margin-bottom: 2rem;
    line-height: 1.6; 
	
}

.cta-button 
 {
    background-color: white;
   color: #3182ce;
  padding: 1rem 2rem;
  border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
               display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.methodology-section {
   padding: 80px 0;
    background-color: #f7fafc;
}

.methodology-grid {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	   gap     :      2rem;
}

.method-card


{
    background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
   text-align   : center;
   transition: all 0.3s ease;
   opacity: 0;
  transform: translateY(30px);
}

.method-card.animate-in {
   opacity   :1;
  transform: translateY(0);


}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.method-number
{

	    font-size    :  2rem;
  font-weight     :      700;
  color:    #3182ce;
   margin-bottom: 1rem;
}

.method-card h3 {
   font-size    : 1.3rem;
    color: #2d3748;
  margin-bottom: 1rem;
    font-weight: 600;
}

.method-card p {
      color:       #718096;
   line-height: 1.6;
	}

.testimonials-section {

        padding: 80px 0;}

.testimonials-wrapper


{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
       margin-top: 2rem;
}

.testimonial-card		{
   background: #f7fafc;
  padding: 2.5rem;
  transition: all 0.6s ease;
    opacity: 0;
  border-radius: 12px;
  transform: translateY(30px);
   border-left: 4px solid #3182ce;
	
}

.testimonial-card.animate-in {
    opacity: 1;
  transform: translateY(0);
}

.testimonial-content p {
    font-style: italic;
    color: #4a5568;
      margin-bottom: 1.5rem;
   font-size     :       1.1rem;
     line-height: 1.7;
}

.testimonial-author strong {
    color: #2d3748;
    display: block;
   margin-bottom: 0.5rem; 

}

.testimonial-author span {
  color    :       #718096;
  font-size: 0.9rem;
}

.contact-section {
   padding     :    80px 0;
    background-color: #f7fafc;
}

.contact-wrapper
	{
    display: grid;
                    grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.2rem;
    color: #2d3748;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.contact-info p {
   color: #4a5568;
    margin-bottom: 2rem;
  line-height:1.6;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
       display: flex;
      flex-direction: column;
       gap: 0.5rem; 
	
}

.contact-item strong {
   color: #2d3748;
}

.contact-item span{

  color: #4a5568;
}

.additional-image	{
  margin-top: 2rem;
}

.additional-image img {
   border-radius: 12px;

	  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}



.contact-form-wrapper {
    background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group{
   margin-bottom: 1.5rem;
}

.form-group label {
    display     : block;
   margin-bottom: 0.5rem;
  color: #2d3748;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	  transition: border-color 0.3s ease;
    padding: 0.75rem;
    border-radius: 8px;
    font-size     : 1rem;
   border: 2px solid #e2e8f0;
   width: 100%;
   background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color   :       #e53e3e;
}

.error-message {
   color: #e53e3e;
   font-size: 0.875rem;
   margin-top: 0.5rem;
}

.submit-button {
   width: 100%;
   background-color: #3182ce;
    color: white;
  padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: #2c5aa0;
  transform: translateY(-2px);
}

.footer-section {
	background-color: #2d3748;
          color: white;
    padding: 60px 0 20px;
}

.footer-container {
   max-width  :      1200px;
  margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	 margin-bottom: 2rem;
}

.footer-logo {
         height: 40px;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  line-height: 1.6;
   color: #a0aec0;
}  

.footer-navigation h3,
.footer-legal h3,
.footer-contact h3
	{
  margin-bottom  :  1rem;
    font-size     :   1.1rem;
   color: white;
}

.footer-navigation ul,
.footer-legal ul {
               list-style: none;
}

.footer-navigation li,
.footer-legal li {
   margin-bottom: 0.5rem;
}

.footer-navigation a,
.footer-legal a {
    color     :  #a0aec0;
    transition: color 0.3s ease;
}

.footer-navigation a:hover,
.footer-legal a:hover   {
   color: white;
}

.footer-contact p {
  color: #a0aec0;
    margin-bottom: 0.5rem;
          line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 1rem;
  text-align: center; 
	
}

.footer-bottom p {
    color: #a0aec0;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-items {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-items.menu-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .content-wrapper h1 {
        font-size: 2.5rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 100px 1rem 60px;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}.about-hero {
    padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    min-height: 70vh;
	display: flex;
    align-items :center;
}

.about-hero-content {
   max-width: 1200px;
   margin   :  0 auto;
   display     :   grid;
    grid-template-columns: 1fr 1fr;
	 gap: 3rem;
  align-items: center;
}

.about-main-title

{
    font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
   font-size: 3rem;
     margin-bottom: 1.5rem;
} 

.about-hero-description
	{
   font-size: 1.1rem;
  color: #e2e8f0;
    line-height :     1.7;
}

.about-hero-image img   {
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.company-story {
   padding: 80px 0;
   background-color: #ffffff;
	
}

.story-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.2rem;
         color: #2d3748;
    margin-bottom: 2rem;
  font-weight: 700;
}

.story-content p {
	color: #4a5568;
  line-height: 1.7;
    margin-bottom: 1.5rem;
   font-size: 1.05rem;
}

.achievement-stats {
          display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
   margin-top: 3rem;
}

.stat-item {
  text-align   :center;

    padding: 1.5rem;

  background: #f7fafc;

   border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;

	  font-weight: 700;

	    color: #3182ce;

		 margin-bottom: 0.5rem;
}

.stat-label {
   color: #718096;
   font-size: 0.9rem;
}

.story-visual img {
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission-vision {
    padding: 80px 0;
    background-color    :       #f7fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
     background: white;
   padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.mission-card h3, .vision-card h3 {
      font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
  font-weight: 600;
} 

.mission-card p, .vision-card p {
   color :      #4a5568;
    line-height: 1.7;
}

.team-expertise		{

  padding: 80px 0;
   background-color   :       #ffffff;
     }

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.expertise-item {
    text-align: center;
   padding: 2rem;
    background: #f7fafc;
    border-radius   :    12px;
   transition: all 0.3s ease;


}

.expertise-item:hover 
 {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.expertise-icon {
   font-size: 2.5rem;
    margin-bottom  :1rem;
}

.expertise-item h4 {
   font-size: 1.2rem;
  color: #2d3748;
	margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-item p {
    color: #718096;
       line-height: 1.6;
          font-size: 0.95rem;
}

.approach-methodology {
   padding: 80px 0;
  background-color: #f7fafc;


}

.approach-content {
    display :  grid;
	grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: start;
}

.approach-text h2 {
  font-size: 2.2rem;
   color: #2d3748;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.approach-text > p {

    color: #4a5568;
   line-height: 1.7;
   margin-bottom: 2rem;
	}

.approach-principles		{
   display     : flex;
   flex-direction: column;
    gap  :       1.5rem;
}

.principle-item {
    border-radius: 8px;
    background: white;
  padding :      1.5rem;
	 border-left: 4px solid #3182ce;
}

.principle-item h4 {
	color: #2d3748;
  margin-bottom: 0.5rem;
    font-weight     :        600;
     }

.principle-item p {
  color     : #718096;
  line-height: 1.6;
    font-size: 0.95rem;
}

.approach-visual img {
	 border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.certifications-partners

{
    padding: 80px 0;
         background-color: #ffffff;
}

.cert-content > p {
    color: #4a5568;
    line-height: 1.7;
   margin-bottom: 3rem;
    font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
   margin-left: auto;
    margin-right: auto;
}


.standards-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.standard-item     {
   padding :      2rem;
    background   :#f7fafc;
               border-radius: 12px;
  text-align: center;
}

.standard-item h4 {
	color: #2d3748;
          margin-bottom: 1rem;
    font-weight   :  600;
}

.standard-item p {
   color  :    #718096;
	line-height    :  1.6;


}

.why-choose-us {
   padding: 80px 0;
	background-color    :     #f7fafc;
}

.reasons-wrapper {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.reason-card {
	background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	 text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover 
 {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.reason-number
	{
  font-size :    1.5rem;
     font-weight: 700;
   color: #3182ce;
  margin-bottom: 1rem;
   display: inline-block;
   width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ebf8ff;
   line-height: 50px;
}



.reason-card h4 {
    color: #2d3748;
   margin-bottom: 1rem;
   font-weight: 600; 

}

.reason-card p {
  line-height: 1.6;
    color: #718096;
}

.final-cta {
                    padding: 80px 0;
  background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
}

.final-cta-content h2 {
	    margin-bottom: 1.5rem;
   font-weight:700;
   font-size: 2.2rem;
  color: white;
     }

.final-cta-content p {
  color    :   #bee3f8;
   line-height: 1.7;
   margin-bottom: 2rem;
}

.return-home-btn {
    background-color: white;
    color: #3182ce;
    padding: 1rem 2rem;
   border-radius: 8px;
    font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
	
}

.return-home-btn:hover     {
     transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	
	}

.final-cta-image img  {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);

}

.thankyou-main {
    padding: 120px 2rem 80px;
   min-height :      100vh;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.thankyou-container {
               max-width: 1200px;
    margin: 0 auto;
	display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 4rem;
   align-items    :  start;
}  

.thankyou-content {
   background    :        white;
   padding: 3rem;
	 border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.success-icon {
  margin-bottom: 2rem;
  text-align: center;
}

.checkmark-circle {
	width: 80px;
    height: 80px;
	border-radius: 50%;
  background: #38a169;
     margin     :        0 auto;
    position: relative;
   animation: checkmarkPulse 2s ease-in-out infinite;
}

.checkmark {
    position: absolute;
   top :   50%;
    left: 50%;
  transform: translate(-50%, -50%);
    width: 20px;
	height: 35px;
    border: solid white;
       border-width: 0 4px 4px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.thankyou-title {
  font-size: 2.5rem;
    color: #2d3748;
    text-align  :   center;
   margin-bottom: 2rem;
   font-weight : 700;
}

.main-message    {
   margin-bottom: 3rem;
   font-size: 1.1rem;
    line-height: 1.7;
   color: #4a5568;
   text-align: center;
}

.next-steps h2 {
  font-size: 1.5rem;
          color: #2d3748;
  margin-bottom: 2rem;
  font-weight: 600;
}

.steps-list	{
  display: flex;
               flex-direction: column;
  gap: 1.5rem;
    margin-bottom    :       3rem;
}

.step-item		{
	  display   :      flex;
	 gap: 1rem;
   align-items     :     start;
     }

.step-number {
   background: #3182ce;
    color: white;
    width: 30px;
   height: 30px;
   border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
   font-weight: 600;
     flex-shrink   :    0;
}

.step-content h3 {
  color: #2d3748;
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.step-content p {

  color :     #718096;
   line-height: 1.6;
}

.additional-info {
	background: #f7fafc;
  padding :     2rem;
  border-radius: 12px;
   margin-bottom: 2rem;
}

.additional-info h2 {
   color: #2d3748;
   margin-bottom: 1rem;
  font-weight: 600;
}

.additional-info > p {
    margin-bottom: 1rem;
    color     :#4a5568;
	line-height: 1.6;
}

.preparation-list {
  list-style: none;
   padding-left: 0;
}

.preparation-list li {
    padding: 0.5rem 0;

	   color:     #4a5568;

		 position    :    relative;

	  padding-left: 2rem;
}

.preparation-list li:before {
  content: '•';
               position: absolute;
  left: 0;
          color: #3182ce;
   font-weight: bold;
    font-size   : 1.2rem;
}  

.emergency-contact {
         background: #ebf8ff;
    padding: 2rem;
    border-radius: 12px;
   text-align: center;
    margin-bottom: 2rem;

}

.emergency-contact h3
{
  color: #2d3748;
   margin-bottom: 1rem;
   font-weight: 600;
}

.emergency-contact p {
    color: #4a5568;
  margin-bottom: 1rem;
   line-height: 1.6;
}

.phone-highlight 
 {
    font-size: 1.5rem;
   font-weight: 700;
       color: #3182ce;
          margin: 1rem 0;
}

.contact-hours {
  font-size   :   0.9rem;
   color: #718096;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.thankyou-visual {
   position  :     relative;
}

.thankyou-visual img {

   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
     }

.floating-elements {
    position: relative;
    margin-top: 2rem;
}

.floating-card {
    background: white;
   padding: 1.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
   margin-bottom: 1rem;
   text-align    :   center;
	animation: float 6s ease-in-out infinite;
}

.floating-card h4 {
   font-size :       1.5rem;
    color: #3182ce;
   margin-bottom: 0.5rem;
    font-weight     :   700;
}

.floating-card p {
  color: #718096;
    font-size: 0.9rem;
}

.card-2 {
    animation-delay: 2s;
}

.card-3 {
       animation-delay: 4s;
}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content {
        padding: 2rem;
    }
    
    .thankyou-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .thankyou-main {
        padding: 100px 1rem 60px;
    }
    
    .about-hero {
        padding: 100px 1rem 60px;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .thankyou-content {
        padding: 1.5rem;
    }
    
    .steps-list {
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}

@keyframes checkmarkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}.cookies-section, .privacy-section {
        padding: 80px 0;
}

.content-wrapper h2 {
   font-size: 1.8rem;
   color: #2d3748;
  margin-bottom: 1rem;
    font-weight    :    600;
}

.content-wrapper p    {
   color: #4a5568;
  margin-bottom: 1.5rem;
   line-height:     1.7;
   font-size: 1.1rem;
}

.content-wrapper ul {
	margin-bottom: 1.5rem;
}