* {
   padding    : 0; 
		box-sizing   :       border-box; 
	  margin: 0;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f4f7fc;
    --accent-color: #ff6b35;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --white: #ffffff;
    --border-light: #e2e8f0;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    --font-primary: 'Arial', sans-serif;
    --font-secondary: 'Georgia', serif;
}

body {
  font-family: var(--font-primary);
	 line-height: 1.6;
  color: var(--text-primary);
  font-size  :       16px;
}

.container	{
  max-width: 1200px;
	margin: 0 auto;
      padding: 0 20px;
}

.main-navigation {
    position: fixed;
  top: 0;
    left: 0;
   right: 0;
  background: var(--white);
  box-shadow: var(--shadow-light);
   z-index: 1000;
  transition: all 0.3s ease;
}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
	display: flex;
    justify-content: space-between;
   align-items: center;
    padding: 1rem 2rem;
  max-width: 1200px;
	margin: 0 auto;
}

.brand-logo img {
  height: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
   gap: 2rem;

}

.nav-links a {

	    text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition :   color 0.3s ease;
  position: relative;

     }

.nav-links a:hover {
  color: var(--primary-color);
}


.nav-links a::after {
  content: '';
  position: absolute;
    width: 0;
  height: 2px;
  bottom  :   -5px;
  left     :      0;
  background-color: var(--primary-color);
     transition: width 0.3s ease;
}

.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-color: var(--text-primary); 
	   transition: 0.3s;
}


.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);
}

.hero-section {


         padding    :   120px 0 80px; 
	  background: var(--gradient-primary); 
	  color: var(--white); 
	    overflow: hidden;}

.hero-content {
	 max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
  display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items    :      center;
}

.hero-text h1 {
    font-size: 3.2rem;
   font-weight: 700;
   line-height: 1.2;
                    margin-bottom: 1.5rem;
  font-family: var(--font-secondary);
}

.hero-text p {
	  font-size: 1.2rem;
   margin-bottom   :  2.5rem;
  color: rgba(255, 255, 255, 0.9);
   line-height: 1.7;


}

.hero-buttons {
    display: flex; 
	  gap: 1rem; 
	    flex-wrap     :   wrap;
}

.cta-primary, .cta-secondary   {
	  padding:   14px 28px;
    text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
    display  :    inline-block;


}

.cta-primary {

  background: var(--accent-color);
  color: var(--white);

}

.cta-primary:hover {
    background: #e55a2b;
  transform: translateY(-2px);

}

.cta-secondary {
  background    :transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.hero-image img 
 {
    width     :      100%;
   height:     auto;
   border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.about-preview {
   padding: 80px 0;
  background: var(--secondary-color);
}

.about-grid {
  gap: 4rem;
    display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr; 
	
}

.about-text h2 {
  font-size : 2.5rem;
   margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);
}

.about-text p {
      font-size: 1.1rem;
    margin-bottom: 2rem;
  color: var(--text-secondary);

}

.benefits-list {
	   list-style:none;}

.benefits-list li {
  padding: 0.8rem 0;
    position: relative;
  padding-left: 2rem;
  color: var(--text-primary);
}

.benefits-list li::before {
  content: '✓';
	    position: absolute;
	 left: 0;
	  color: var(--accent-color);
	    font-weight: bold;
		font-size: 1.2rem;
}

.about-visual img {
   width: 100%;
     border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.services-section {
   padding: 80px 0;
  background: var(--white); 
	
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);
}

.services-grid {

	         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;


}

.service-card {
  background: var(--white);
  border-radius: 12px;
 padding: 2rem;
  box-shadow: var(--shadow-light);
	transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.service-card:hover     {
  box-shadow: var(--shadow-medium); 
  transform: translateY(-5px);
} 

.service-content h3 {


    font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);

}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
   display: flex;
  flex-direction: column;
   gap: 0.5rem;
}

.service-features span {
  background: var(--secondary-color);
     padding: 0.5rem 1rem;
   border-radius    : 6px;
   font-size: 0.9rem;
  color: var(--text-primary);
}

.methodology-section {
  padding    :  80px 0;
  background: var(--secondary-color);
}

.methodology-content {
  display  :   grid;
               grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.methodology-text h2 {

    font-size:      2.5rem;
   margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);


}

.methodology-text p {
  font-size  :  1.1rem;
         margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.methodology-steps {
  display: flex;
   flex-direction: column;
  gap: 1.5rem;
}

.step {
    align-items: flex-start;
	gap: 1rem;
   display: flex;
}

.step-number {
  background: var(--primary-color);
  color: var(--white);
  width  :    50px;
        height: 50px;
    border-radius: 50%;
    display: flex;
   align-items: center;
    justify-content    :center;
    font-weight: bold;
  flex-shrink: 0;}

.step-content h4 {
  font-size: 1.2rem;
   margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.step-content p 
 {
  color: var(--text-secondary);
	
}

.methodology-visual img{
    width: 100%;
    border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.cta-section {
    padding: 80px 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.cta-content {
  display    :      grid;
               align-items: center;
    grid-template-columns: 1fr 1fr;
     gap: 4rem;
}

.cta-text h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
  font-family: var(--font-secondary);
	
}

.cta-text p {
   font-size: 1.2rem;
    margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-benefits {
	display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.benefit-item  {
 text-align: center;
}

.benefit-number {
    display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

.benefit-text {
	font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);


}

.cta-action {
  text-align: center;
}

.cta-action img {
	 width     :     100%;
    border-radius: 12px;
    margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
}

.cta-button {
  background: var(--accent-color);
  color: var(--white);
  padding: 16px 32px;
    border-radius: 8px;
	 text-decoration: none;
   font-weight: 600;
  font-size: 1.1rem;
                    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover		{
    background: #e55a2b;
  transform: translateY(-2px);
}

.cta-note {
   margin-top: 1rem;
    font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-section h2
{
  text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);
}

.testimonials-grid {
   display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.testimonial-card {
  background: var(--secondary-color);
   padding: 2rem;
   border-radius: 12px;
  position: relative;
}

.testimonial-content p {
               font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
   line-height: 1.7;
}

.testimonial-author strong
{
  color: var(--primary-color);
	 display: block;
   margin-bottom: 0.2rem;
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-section {


    padding: 80px 0; 
  background: var(--secondary-color);}

.contact-wrapper {
  display   :grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
 font-size: 2.5rem; 
  margin-bottom   :   1.5rem; 
  color: var(--primary-color); 
  font-family: var(--font-secondary);
}

.contact-info p {
   font-size     :   1.1rem;
    margin-bottom: 2rem;
  color: var(--text-secondary);
}

.contact-details {
	  margin-bottom: 2rem;
}

.contact-item 
 {
  display: flex;
   flex-direction: column;
   margin-bottom: 1rem;
}

.contact-item strong {
  color: var(--primary-color);
   margin-bottom: 0.3rem;
}

.contact-item span {
  color: var(--text-secondary);
}

.office-image img {

	   width: 100%; 
	 border-radius: 12px; 
  box-shadow: var(--shadow-medium); 
   margin-top: 1rem;
     }

.consultation-form {
	  background: var(--white);
     padding: 2rem;
   border-radius: 12px;
  box-shadow: var(--shadow-light);


}

.form-group {
   margin-bottom  :  1.5rem;
}

.form-group label {
        display: block;
   margin-bottom: 0.5rem;
  color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	 width: 100%;
   padding: 12px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline  :none;
  border-color: var(--primary-color);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
   border-color: #e53e3e;
}

.submit-button {
  background: var(--primary-color);
  color: var(--white);
   padding: 14px 28px;
   border:        none;
    border-radius: 6px;
    font-size :      1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
       width: 100%;
}

.submit-button:hover {

   background   :       #1e3a8a;
  transform: translateY(-2px); 

     }

.main-footer {
  background: var(--text-primary);
  color: var(--white);
    padding: 50px 0 20px;
} 

.footer-content {
  display: grid;
    grid-template-columns     :     1fr 1fr 1fr;
    gap: 3rem;
   margin-bottom: 2rem;
}

.footer-brand img {
	height: 40px;
    margin-bottom: 1rem; 

}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
   line-height: 1.6;
}

.link-group h4{
		margin-bottom: 1rem;
  color: var(--white);
}

.link-group ul {
   list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
    transition: color 0.3s ease;
}

.link-group ul li a:hover 
 {
  color: var(--white);
}

.footer-contact h4 {
   margin-bottom: 1rem;
  color: var(--white);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top:        1.5rem;
  text-align: center;
}

.footer-bottom p	{
	  color: rgba(255, 255, 255, 0.6);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-content,
    .about-grid,
    .methodology-content,
    .cta-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-wrapper {
        padding: 1rem 15px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-preview,
    .services-section,
    .methodology-section,
    .cta-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }
}.animate {
               animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.page-header {
                    padding: 120px 0 60px;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
}

.header-content h1 {
               font-size: 3rem;
    margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

.header-content p {
       font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
    margin: 0 auto;

}

.company-story {
   padding: 80px 0;
  background: var(--white);
}

.story-grid {
    display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items     :     center;
}

.story-text h2

{
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);
}


.story-text p {
  font-size: 1.1rem;
	 margin-bottom: 1.5rem;
  color: var(--text-secondary);
    line-height: 1.7;
}

.mission-values {
    margin-top: 2rem;
  display: grid;
        grid-template-columns: 1fr;
	gap: 1.5rem;
}

.value-item
{
  padding: 1.5rem;
  background: var(--secondary-color);
    border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.value-item h4 {
  color: var(--primary-color);

	  margin-bottom: 0.5rem;

	                    font-size     :     1.2rem;
}

.value-item p {

  color: var(--text-secondary);
   margin: 0;
  font-size: 1rem;
}

.story-image img {
					width: 100%;
   border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.team-section {
  padding: 80px 0;
  background: var(--secondary-color);
}

.team-section h2 {
  text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);
}

.team-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;

}

.team-member {
  background: var(--white);
               border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}



.member-info h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
} 

.member-role {
  color: var(--accent-color);
 font-weight: 600;
  display: block;
	margin-bottom: 1rem; 
	
}

.member-info p  
  {

	  color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;


}

.member-expertise {
  display: flex;
  flex-wrap:     wrap;
   gap: 0.5rem;
}

.member-expertise span {
  background: var(--secondary-color);
	padding: 0.4rem 0.8rem;
   border-radius: 15px;
    font-size: 0.8rem;
  color: var(--text-primary);
}

.approach-section {
  padding: 80px 0;
  background: var(--white);
}

.approach-content {
	display: grid;
        grid-template-columns: 1fr 1fr;
  gap: 4rem;
     align-items: center;
}

.approach-text h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);
}

.approach-text p 
 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height  :    1.7;
	
}

.approach-features {
    display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-block {

    padding: 1.5rem;
  background: var(--secondary-color);
  border-radius: 8px;
	}

.feature-block h4 {
  color: var(--primary-color);
       margin-bottom    :    0.5rem;
  font-size: 1.2rem;
}

.feature-block p 
 {
  color: var(--text-secondary);
   margin: 0;
}

.approach-image img {
	width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.experience-section{
    padding: 80px 0;
  background: var(--secondary-color);
}

.experience-section h2 {
   text-align: center;
	 font-size: 2.5rem;
   margin-bottom: 3rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap :      2rem;
}

.stat-item {
    text-align: center;
  background: var(--white);
  padding: 2rem;
   border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.stat-number {
   font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
      display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-primary);
          font-weight: 500;
}

.methodology-deep   {
  padding: 80px 0;
  background: var(--white);
}

.methodology-grid {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items :  center;
}

.method-text h2


{
	font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);
	
}

.method-text p 
 {
 font-size: 1.1rem;
    margin-bottom: 2rem;
  color: var(--text-secondary); 
	
}

.calm-steps {
    display: flex;
   flex-direction: column;
   gap: 1.5rem;


}

.calm-step {
  align-items: flex-start;
   gap    :      1rem;
    display: flex;
}

.step-letter {
  background: var(--primary-color);
  color: var(--white);
  width: 60px;
          height: 60px;
 border-radius: 50%;
                    display: flex;
	 align-items  :    center;
    justify-content: center;
  font-weight: bold;
   font-size: 1.5rem;
	flex-shrink     :     0;
}

.step-detail h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
               font-size: 1.2rem;
}



.step-detail p {
	  color: var(--text-secondary);
	margin: 0;
}

.method-visual img {
	width     :        100%;
    border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.certifications-section {
  padding: 80px 0;
  background: var(--secondary-color);
}

.certifications-section h2 {
    text-align: center;
   font-size: 2.5rem;
                    margin-bottom: 3rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);
}

.cert-content {

  display    :        grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
	 align-items: center;
     }

.cert-text p {
    font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
    line-height   :   1.7;
}

.cert-list {
   display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cert-item {
 padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-light);

}

.cert-item strong {
  color: var(--primary-color);
         display: block;
   margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cert-item span {
  color: var(--text-secondary);
       font-size: 0.9rem;
}

.cert-image img {

    width  :        100%;
      border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.thank-you-hero {

	    padding: 120px 0 80px;
  background: var(--gradient-primary);
  color: var(--white);
   text-align: center;
     }

.thank-you-content {
		max-width: 800px;
  margin: 0 auto;
}

.success-icon    {
  margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
    height: 80px;
    border-radius: 50%;
  background: var(--accent-color);
   display: flex;
	align-items: center;
   justify-content: center;
                    margin   :   0 auto;
   animation: scaleIn 0.5s ease-out;
} 

.checkmark {
     width: 30px;
    height: 30px;
  border: 3px solid var(--white);
    border-top     : none;
  border-left: none;
  transform: rotate(45deg);
  margin-top: -5px;
     margin-left: 5px;

}

.thank-you-content h1 {
    font-size: 3rem;
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

.thank-you-subtitle		{
    font-size: 1.2rem;
   margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
	}

.next-steps {
  background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
	border-radius: 12px;
   margin: 3rem 0;
}

.next-steps h2 {
   font-size: 2rem;
   margin-bottom: 2rem;
  font-family: var(--font-secondary);
}

.steps-grid {
   display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;


}

.step-card {
  background: var(--white);
  color: var(--text-primary);
   padding: 2rem;
   border-radius: 8px;
   text-align: center;
  box-shadow: var(--shadow-light);
}

.step-number {
  background: var(--primary-color);
  color: var(--white);
   width: 40px;
  height    :     40px;
  border-radius: 50%;
  display: flex;
    align-items   :   center;
	justify-content: center;
   font-weight: bold;
   margin    :   0 auto 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
      margin-bottom: 1rem;
  color: var(--primary-color); 

}

.step-card p {
  color: var(--text-secondary);
   margin-bottom:     1rem;
    line-height: 1.5;
	
}

.time-frame {
  background: var(--secondary-color);
   padding: 0.4rem 0.8rem;
    border-radius  : 15px;
  font-size: 0.8rem;
  color: var(--primary-color);
   font-weight: 600;
}

.thank-you-image {
       margin: 3rem 0;
}

.thank-you-image img {
      width: 100%;
    max-width: 500px;
   border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.additional-info {
  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
   border-radius    :     12px;
   margin: 3rem 0;
   text-align: left;
}

.additional-info h2

{
	font-size:       1.8rem;
    margin-bottom: 1.5rem;
  text-align: center;
}

.prep-tips {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 1.5rem;
	
}

.tip-item {
  background: rgba(255, 255, 255, 0.1);
   padding  :       1.5rem;
  border-radius: 8px;
}

.tip-item h4 {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.tip-item p {
  color: rgba(255, 255, 255, 0.8);
   margin: 0;
               line-height: 1.5;
}

.contact-reminder {
  background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 12px;
       margin: 3rem 0;
}

.contact-reminder h3 {


    font-size: 1.5rem;
  margin-bottom :       1rem;
}

.contact-reminder p {
   margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.emergency-contact {
  text-align: center;
}

.phone-number {

	   display: block;
    font-size: 1.5rem;
    font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
	}

.availability {
  color: rgba(255, 255, 255, 0.8);
  font-size    :       0.9rem;
}

.action-buttons {


  display: flex;
    gap: 1rem;
   justify-content     :      center;
                    margin-top: 3rem;
         flex-wrap: wrap;
     }

.btn-primary, .btn-secondary {
   padding: 14px 28px;
    text-decoration: none;
	border-radius: 8px;
    font-weight: 600;
  transition :     all 0.3s ease;
    display: inline-block;
	
}

.btn-primary {
  background: var(--accent-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.btn-secondary {
    background     :     transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
     }

.testimonial-preview  {


	 padding: 80px 0;
  background: var(--secondary-color);
  text-align: center;
}

.testimonial-preview h2 {
   font-size: 2.5rem;
   margin-bottom: 2rem;
  color: var(--primary-color);
  font-family: var(--font-secondary);

}

.testimonial-highlight {
  max-width     :  600px;
    margin: 0 auto;
  background: var(--white);
  padding: 3rem 2rem;
         border-radius :        12px;
  box-shadow: var(--shadow-light);
}

.testimonial-highlight blockquote   {
       font-size: 1.2rem;
        font-style: italic;
  color: var(--text-secondary);
    margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-highlight cite strong {
  color: var(--primary-color);
  display: block;
    margin-bottom: 0.3rem;
   font-style: normal;
}

.testimonial-highlight cite span {
  color: var(--text-secondary);
  font-size: 0.9rem;
       font-style: normal;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .story-grid,
    .approach-content,
    .methodology-grid,
    .cert-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .prep-tips {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-hero {
        padding: 100px 0 60px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        padding: 2rem 1rem;
    }
    
    .additional-info {
        padding: 1.5rem;
    }
}