* {
	margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
   color: #333;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding :       0 20px;
}

.nav-wrapper {

  position: fixed;
    top: 0;
    width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    z-index: 1000;
   transition: all 0.3s ease;
     }

.nav-wrapper.nav-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper.nav-hidden {
  transform: translateY(-100%); 

}

.nav-container {
   max-width: 1200px;
    margin: 0 auto;
	padding: 0 20px;
    display: flex;
	justify-content     :    space-between;
    align-items: center;
	height: 70px;
}

.brand-logo {
   width: auto;
  height: 45px;
}

.nav-links	{
  display: flex;
	   list-style     :        none;
	   gap: 2rem;
}

.nav-link
{
	 position: relative;
    text-decoration: none;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
   font-weight: 500;
	color: #333;
}

.nav-link:hover,
.nav-link.active {
	color: #2c5aa0;
}

.nav-link::after {
  background: #2c5aa0;
   transition: width 0.3s ease;
   left   :    0;
  content: '';
    position: absolute;
    width: 0;
        bottom :  -5px;
    height    :        2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width    :        100%;
}

.burger-toggle {
  display: none;
    flex-direction: column;
  background: none;
   border: none;
   cursor: pointer;
	padding: 5px;
}

.burger-line  {
   width: 25px;

   height: 3px;

  background: #333;

   margin: 3px 0;

    transition: 0.3s;

}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {

	  transform: rotate(45deg) translate(-5px, -6px);}

.mobile-nav {

  display: none;

	  position: absolute;

	   top: 100%;

	   left: 0;

	   width: 100%;

	  background: white;

	  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

	  transform: translateY(-100%);

	  opacity: 0;

	    transition: all 0.3s ease;
}

.mobile-nav.active {
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
    display: block;
  transform: translateY(0);
  -ms-transform: translateY(0);
    opacity: 1;
}

.mobile-links {
	   list-style: none;
	padding: 20px;


}

.mobile-links li {
  margin: 15px 0;
}

.mobile-link {
  text-decoration: none; 
  color:      #333; 
    font-size: 1.1rem; 
    display: block; 
  padding: 10px 0;
}

.hero-section {
	padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	overflow: hidden;
}

.hero-content {
	max-width: 1200px;

    margin  :       0 auto;

  padding: 0 20px;

    display: grid;

  grid-template-columns: 1fr 1fr;

   gap: 3rem;

     align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
   font-weight: 700;
    color: #1a365d;
  margin-bottom :     1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
					font-size: 1.2rem;
    color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
    display: flex; 
	          gap: 1rem; 
	  flex-wrap  :       wrap;
}

.btn-primary, .btn-secondary, .btn-cta {


    padding   :12px 30px;
   text-decoration    :    none;
  border-radius     :       8px;
          font-weight: 600;
    transition: all 0.3s ease;
        display: inline-block;
      text-align: center;


}

.btn-primary, .btn-cta {
       background: #2c5aa0;
   color: white;
}

.btn-primary:hover, .btn-cta:hover {
    background: #1e3d6f;
  transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
   border: 2px solid #2c5aa0;


}  

.btn-secondary:hover {
  background: #2c5aa0;
   color: white;}

.hero-image img {
    width:  100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-section {
  padding: 80px 0;
    background: white;
}

.features-section h2 {
   text-align: center;
 font-size: 2.5rem;
    color: #1a365d;
          margin-bottom: 3rem;
}

.features-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-item {
  padding: 2rem;
   border-radius: 12px;
   background: #f8f9fa;
    transition: all 0.3s ease;
					opacity: 0;
  transform: translateY(30px);


}

.feature-item.animate-in    {
	    opacity :  1;
  transform: translateY(0);

}

.feature-item:hover {

	  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);


}

.feature-item h3 {
  color: #2c5aa0;
					margin-bottom:      1rem;
    font-size: 1.4rem;
}

.services-section {
  padding: 80px 0;
     background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
   font-size: 2.5rem;
  color: #1a365d;
       margin-bottom: 3rem;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));

   gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
   overflow    : hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
   opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
  transform: translateY(0);
}

.service-card:hover


{
  transform: translateY(-8px); 
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
   width: 100%;
               height: 220px;
   object-fit: cover;}

.service-info {
  padding: 1.5rem;
}

.service-info h3 {

	    color: #2c5aa0;
    margin-bottom: 1rem;
   font-size: 1.3rem;
     }

.service-benefits {
  list-style: none;
   margin-top: 1rem;
}

.service-benefits li {
    padding: 0.3rem 0;
  color: #4a5568;
   position: relative;
  padding-left: 1.5rem;


}

.service-benefits li::before
{
  content: '✓';
    position: absolute;
   left    :  0;
  color: #2c5aa0;
   font-weight: bold;
}

.methodology-section {

    padding: 80px 0;
             background     :        white;

}

.methodology-content {
               display: grid;
  grid-template-columns     :   1fr 1fr;
  gap   :3rem;
         align-items  :       center;
}

.methodology-text h2 {
   font-size: 2.5rem;

	      color: #1a365d;

		margin-bottom: 1.5rem;
}


.methodology-points {
  margin-top: 2rem;
}

.method-point {
    margin  :       1.5rem 0;
   opacity: 0;
  transform: translateX(-30px);
   transition: all 0.5s ease;
}

.method-point.animate-in


{
   opacity: 1;
  transform: translateX(0);
}

.method-point h4 {
   color: #2c5aa0;
    margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.methodology-visual img {

	   width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     }

.cta-section     {


    padding: 80px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
   color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
    margin-bottom  :   1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom     : 3rem;
  max-width: 600px;
      margin-left: auto;
    margin-right: auto;
}

.cta-stats {
  display:       grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
   margin: 3rem 0;
}

.stat-item {
  text-align: center;
}  

.stat-number {

	display: block;
  font-size    :       3rem;
  font-weight:        700;
   color: #ffd700; 
	

}

.stat-label {
   display: block;
   font-size: 0.9rem;
   margin-top: 0.5rem;
}

.btn-cta  {


    font-size: 1.1rem;
   padding: 15px 40px;
    background: #ffd700;
  color: #1a365d;
     }

.btn-cta:hover {
  background: #ffed4a;
  transform: translateY(-3px);
}

.contact-section {
    padding: 80px 0;
	background: #f8f9fa;
}  

.contact-wrapper {
  grid-template-columns: 1fr 1fr;
      display: grid;
   gap: 3rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 1.5rem;
}

.contact-details {
	 margin-top: 2rem;
}

.contact-item {
   display: flex;
    margin: 1rem 0;
	
}

.contact-label {
  font-weight: 600;
    min-width: 80px;
  color: #2c5aa0;
}

.contact-value{
    color: #4a5568;
}

.contact-form {
  background: white;
    padding: 2rem;
     border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom:    1.5rem;
}

.form-row {
	display: grid;
   grid-template-columns: 1fr 1fr;
 gap: 1rem;
}

.form-group label {


  display: block;
    margin-bottom: 0.5rem;
  font-weight: 600;
	 color: #333;

}

.form-group input,
.form-group select,
.form-group textarea {
    width  :      100%;
  padding: 12px;
   border: 2px solid #e2e8f0;
  border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2c5aa0;
   outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
	 border-color: #e53e3e;
}

.form-submit {
	 width: 100%;
  padding: 15px;
        background: #2c5aa0;
    color:        white;
    border: none;
	border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
	cursor: pointer;
 transition: all 0.3s ease;
}

.form-submit:hover {

  background: #1e3d6f;
  transform: translateY(-2px);}

.footer-section {
    color: white;
    padding: 50px 0 20px;
   background: #1a365d;
}

.footer-content {
   display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p  {
   margin: 1rem 0;
    color: #cbd5e0;
  line-height: 1.6;
}

.footer-logo {
      height: 40px;

   width: auto;

  filter: brightness(0) invert(1);

   margin-bottom: 1rem;
     }

.footer-column h4 {

	     color: #ffd700;

    margin-bottom: 1rem;

    font-size: 1.1rem;

}

.footer-column ul {
  list-style     :   none;
}

.footer-column ul li {
    margin: 0.5rem 0;
}

.footer-column ul li a {
   color: #cbd5e0;
       text-decoration: none;
     transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
   padding-top: 2rem;
  text-align: center;
    color: #cbd5e0;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-section,
    .features-section,
    .services-section,
    .methodology-section,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}.about-hero {
	 padding: 120px 0 60px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
	 color     :   white;
  text-align: center;
}

.about-hero-content h1 {
  margin-bottom: 1.5rem;
  font-weight: 700;
   font-size: 3rem; 
}

.about-hero-subtitle {
  font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
  line-height: 1.6;
   opacity    :     0.9;
}

.our-story {
    padding    :   80px 0;
  background: white;
}

.story-content {

  grid-template-columns     :       1fr 1fr;
    gap: 3rem;
  display: grid;
        align-items     :   center;
	}

.story-text h2 {
    font-size: 2.5rem;
	color: #1a365d;
   margin-bottom:    2rem;
}  

.story-text p {

	  margin-bottom: 1.5rem;
      color: #4a5568;
  line-height: 1.7;
	}

.story-highlights {
  display: flex;
	gap     : 2rem;
  margin-top: 2.5rem;
    flex-wrap: wrap;
}

.highlight-item {

  display:  flex; 
	flex-direction: column; 
   align-items: center; 
     text-align: center;

}

.highlight-number {
  font-size: 2.5rem;
   font-weight: 700;
  color: #2c5aa0;
  display: block;
}

.highlight-text {
  font-size: 0.9rem;
  color: #4a5568;
    margin-top: 0.5rem;
}

.story-image img {
    width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.our-approach {

	  padding: 80px 0;
   background  :#f8f9fa;}

.our-approach h2 {
	text-align: center;
   font-size: 2.5rem;
   color: #1a365d;
    margin-bottom: 3rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.approach-item {
          background: white;
  padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.approach-item h3 {
  color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.team-expertise {
   background: white;
   padding: 80px 0;
}

.expertise-content {
    display  :        grid;
               grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items     : center;
}

.expertise-text h2 {
  font-size: 2.5rem;
   color: #1a365d;
  margin-bottom: 1.5rem;
}

.expertise-areas

{
    margin-top: 2rem;
}

.expertise-area {
  margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
  border-radius   :  8px;
  border-left: 4px solid #2c5aa0;
     }

.expertise-area h4 {
   color:#2c5aa0;
         margin-bottom: 0.8rem;
	font-size: 1.2rem; 
	
}  

.expertise-area p {


	 color: #4a5568;
  line-height: 1.6;
	}

.expertise-visual img {
    width: 100%;
          border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-values {
  padding: 80px 0;
   background: #f8f9fa;


}

.mission-values h2 {
   text-align: center;
    font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 3rem;
}

.mission-grid {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-item {
   background: white;
    padding: 2.5rem;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-item h3 {
  color: #2c5aa0;
	margin-bottom: 1.5rem;
     font-size: 1.8rem;
}

.values-list {
   background: white;
    padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-list h3 {
  color: #2c5aa0;

	  margin-bottom: 1.5rem;

	     font-size   :      1.8rem;
}

.value-items {
  display: grid;
 gap: 1.5rem;
}

.value-item {

	  padding: 1rem;
  background: #f8f9fa;
    border-radius: 8px;
	}

.value-item h4    {
  color: #1a365d; 
  margin-bottom:      0.5rem; 
   font-size: 1.1rem;
	
}

.value-item p {
   color: #4a5568;
  font-size: 0.9rem;
}

.why-choose-us {
    padding: 80px 0;
   background: white;
}

.choose-content {
   display: grid;
      grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.choose-text h2 {


   font-size: 2.5rem;
   color: #1a365d;
    margin-bottom: 2rem;
     }

.reasons-list {
    margin-top: 1rem;
}

.reason-item

{
     margin: 2rem 0;
  padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
     }

.reason-item:last-child {
   border-bottom: none;
}

.reason-item h4 {
   color: #2c5aa0;
    margin-bottom   :    1rem;
  font-size   :   1.3rem;
}

.reason-item p {
  color: #4a5568;
	line-height: 1.7;
}

.choose-visual img{
    width: 100%;
     border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.success-stories {
     padding: 80px 0;
   background: #f8f9fa;
	}

.success-stories h2 {
  text-align: center;
   font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 3rem;
}

.stories-grid{


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;}

.story-card {
    background     :    white;
  padding     :     2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


.story-content p {
  color: #4a5568;
    font-style: italic;
               line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size  : 1.1rem;
}

.story-author {
  padding-top: 1rem;
   border-top: 2px solid #2c5aa0;
}

.author-name {
   display: block;
  font-weight: 600;
    color: #1a365d;
  font-size: 1.1rem;
}

.author-position


{
    display: block;
    color: #4a5568;
  font-size: 0.9rem;
    margin-top: 0.3rem;
}

.ready-to-start {
	   padding: 80px 0;
	background: white;
   text-align: center;


}

.ready-content h2 {
    font-size: 2.5rem;
  color: #1a365d;
   margin-bottom: 1.5rem;
}

.ready-content p {
	  font-size: 1.2rem;
   color: #4a5568;
    max-width: 600px;
   margin: 0 auto 2rem;
   line-height: 1.6;
     }

.ready-visual {

	    margin :  2rem 0;
	}

.ready-visual img {
    width: 100%;
	max-width: 500px;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ready-actions {
    display: flex;
    gap: 1rem;
   justify-content: center;
        flex-wrap: wrap;
   margin-top: 2rem;
}

.thankyou-hero {
   padding: 120px 0 60px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    text-align :        center;
}

.thankyou-content {
    max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 2rem; 
	
}

.success-checkmark {
   width    :      80px;
   height: 80px;
   border-radius: 50%;
   display: block;
   stroke-width: 2;
   stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0 auto;
               position: relative;
}

.success-checkmark .check-icon {
   width: 80px;
    height: 80px;
   position   :      relative;
          border-radius: 50%;
   border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.1);
}

.success-checkmark .check-icon::after		{
  content: ''; 
	position: absolute; 
  left: 25px; 
   top: 35px; 
  width: 15px; 
   height: 25px; 
   border: solid #fff; 
    border-width: 0 3px 3px 0; 
  transform: rotate(45deg);
}

.thankyou-content h1 {
   font-size: 3rem;
    font-weight   : 700;
   margin-bottom: 1.5rem;
}



.thankyou-subtitle {
    font-size: 1.3rem;
  line-height: 1.6;
    opacity: 0.9;
}

.next-steps {
    padding:   80px 0;
    background: white;
}

.next-steps h2 {


                    text-align: center;
    font-size: 2.5rem;
  color: #1a365d;
	margin-bottom: 3rem;

}

.steps-timeline {
  display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   max-width: 1000px;
    margin: 0 auto;
} 

.step-item {
   display: flex;
   gap: 1.5rem;
  padding: 2rem;
    background     : #f8f9fa;
   border-radius : 12px;
   transition: all 0.3s ease;
}

.step-item:hover
{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
	   flex-shrink: 0; 
    width: 50px; 
   height: 50px; 
	 border-radius: 50%; 
   background: #2c5aa0; 
   color: white; 
   display: flex; 
   align-items: center; 
   justify-content: center; 
  font-weight: 700; 
   font-size: 1.2rem;
     }

.step-content h3 {
	  color: #1a365d;
   margin-bottom: 0.8rem;
   font-size: 1.3rem;
}

.step-content p {
   color: #4a5568;

  line-height     :     1.6;

	 margin-bottom: 1rem;

}

.step-time {
  color: #2c5aa0; 
	   font-weight  :  600; 
	    font-size: 0.9rem;
}

.while-you-wait {
   padding: 80px 0;
  background: #f8f9fa;
}

.wait-content {
         display: grid;
				 grid-template-columns: 1fr 1fr;
    gap :        3rem;
   align-items: center;
}

.wait-text h2 {
   font-size: 2.5rem;
       color: #1a365d;
  margin-bottom  :   1.5rem;
}

.preparation-tips {
  margin-top: 2rem;
}

.tip-item {
   margin: 2rem 0;
  padding: 1.5rem;
  background: white;
	border-radius: 8px;
  border-left    :      4px solid #22c55e;
}

.tip-item h4 {
    color: #1a365d;
  margin-bottom: 0.8rem;
   font-size: 1.2rem;
}

.tip-item p {

	   color: #4a5568;
    line-height: 1.6;
     }

.wait-visual img {
    width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-highlight {
  padding: 80px 0;
	  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
	  color: white;
	  text-align: center;
}

.testimonial-content h2 {
  font-size  :  2.5rem;
    margin-bottom: 2rem;
}

.featured-testimonial {
  max-width:       800px;
   margin: 0 auto 3rem;
}

.featured-testimonial p {
  font-size: 1.3rem;
	font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial-author {


  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.5rem;
	
     }

.featured-testimonial .author-name {
   display: block;
    font-weight: 600;
   font-size: 1.2rem;
}

.featured-testimonial .author-position {
  display: block;
   opacity: 0.8;
   font-size: 1rem;
    margin-top: 0.3rem;
}

.testimonial-stats {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  max-width: 600px;
  margin     :    0 auto;
}

.testimonial-stats .stat-item {
      text-align: center;
}



.testimonial-stats .stat-number {
   display: block;
   font-size: 2.5rem;
               font-weight: 700;
    color :  #ffd700;
}



.testimonial-stats .stat-label {
          display: block;
   font-size: 0.9rem;
	margin-top: 0.5rem;
    opacity: 0.9;
}

.additional-resources {


    padding: 80px 0;
	background: white;
	}

.additional-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
  margin-bottom: 3rem;
}

.resources-grid {
  display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}



.resource-item {
    border-radius: 12px;
    background: #f8f9fa;
    padding: 2rem;
    transition: all 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.resource-item h3 {

	    color: #2c5aa0;
  margin-bottom: 1rem;
	font-size: 1.3rem;
}

.resource-item p {
    color: #4a5568;

  line-height: 1.6;

   margin-bottom: 1.5rem;
}

.resource-link {
    color: #2c5aa0;
	text-decoration: none;
    border-bottom: 2px solid transparent;
        font-weight: 600;
    transition  :     border-color 0.3s ease;
}

.resource-link:hover {
	border-bottom-color: #2c5aa0;

}

.contact-reminder {
   padding: 80px 0;
  background: #f8f9fa;
               text-align: center;
}

.reminder-content h2 {
   font-size: 2.5rem;
  color: #1a365d;
   margin-bottom: 1.5rem;
}

.reminder-content p {
  font-size: 1.2rem;
    color: #4a5568;
   margin-bottom: 2rem;
                    max-width: 600px;
  margin-left: auto;
	margin-right: auto;
}

.contact-info-reminder {
    display: flex;
  justify-content: center;
   gap: 3rem;
  margin    :     2rem 0;
		 flex-wrap: wrap;
}

.contact-detail {
  display: flex;
   flex-direction     :       column;
   align-items     : center;
   text-align: center;
}

.contact-detail .contact-label {
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.contact-detail .contact-value {
 color:        #4a5568; 
	   font-size: 1.1rem;
}

.reminder-actions {
  display :    flex;
    gap: 1rem;
    justify-content: center;
   flex-wrap: wrap;
   margin-top: 2rem;
}@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .story-content,
    .methodology-content,
    .expertise-content,
    .choose-content,
    .wait-content {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .story-highlights {
        justify-content: center;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-reminder {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .ready-actions,
    .reminder-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .ready-actions .btn-primary,
    .ready-actions .btn-secondary,
    .reminder-actions .btn-primary,
    .reminder-actions .btn-secondary {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thankyou-hero,
    .next-steps,
    .while-you-wait,
    .testimonial-highlight,
    .additional-resources,
    .contact-reminder,
    .our-story,
    .our-approach,
    .team-expertise,
    .mission-values,
    .why-choose-us,
    .success-stories,
    .ready-to-start {
        padding: 60px 0;
    }
    
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .approach-grid,
    .stories-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-item,
    .story-card,
    .resource-item {
        padding: 1.5rem;
    }
    
    .success-checkmark,
    .success-checkmark .check-icon {
        width: 60px;
        height: 60px;
    }
}.policy {
  margin-top: 7%;
}