* {

         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: #ffffff;
	
}



.container  
  {
  max-width: 1200px;
   margin    :      0 auto;
   padding: 0 20px;
}

.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     box-shadow: 0 2px 20px rgba(0,0,0,0.1);
       position: fixed;
       top: 0;
     width  :   100%;
      z-index: 1000;
     transition: all 0.3s ease;
}

.nav-container {
	 display :        flex;
   justify-content: space-between;
    align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
   margin: 0 auto;
}

.brand-logo {
    height: 45px;
  filter: brightness(0) invert(1);
}  

.nav-links {
   display: flex;
    list-style:     none;
  gap: 2rem;
}

.nav-item		{
    color: #ffffff;
        text-decoration: none;
   font-weight: 500;
    padding:       0.5rem 1rem;
  border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-item:hover


{
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
	display    :     none;
	 flex-direction: column;
         cursor :        pointer;
	 padding: 5px;


}

.burger-line {
       width: 25px;
    height: 3px;
    background :    #ffffff;
    margin: 3px 0;
  transition: 0.3s;
      border-radius: 2px;
	}

.hero-area {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
  overflow: hidden;
}

.hero-content {
     max-width: 1200px;
    margin: 0 auto;
                    display: grid;
    grid-template-columns: 1fr 1fr;
	 gap :  4rem;
   align-items: center;
    padding: 0 2rem;}

.hero-text h1 {
   font-size: 3.2rem;
  font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-text p {
 font-size: 1.2rem;
   margin-bottom: 2rem;
	color: #5a6c7d;
   line-height: 1.7;
}

.hero-actions {
   display: flex;
	gap: 1rem;
 margin-top: 2rem;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
   border-radius: 50px;
   text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
   display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
  background: transparent;
   color :     #667eea;
  border: 2px solid #667eea;
}


.btn-secondary:hover {
    background: #667eea;
     color    :      white;
  transform: translateY(-2px);
}

.hero-image img 
 {
    width: 100%;
  height  :        400px;
  object-fit: cover;
    border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transform: rotate(2deg);
	transition     :   transform 0.3s ease;
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

.services-overview {
	padding: 100px 0;
  background: #f8f9fc;
}

.services-overview h2 {
   margin-bottom: 3rem;
	 font-size: 2.8rem;
   font-weight: 700;
    color: #2c3e50;
    text-align: center;
}

.services-grid {

	  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

	   gap: 2.5rem;

	       margin-top: 3rem;

}

.service-card {

    background: white;

	  border-radius: 15px;

	  overflow: hidden;

	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

		transition: all 0.3s ease;

	    position: relative;


}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); 
	
}

.service-card img {
   width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
   padding :   1.5rem;
	 font-size: 1.4rem;
   color: #2c3e50;
   font-weight: 600;
}

.service-card p {
    line-height: 1.6;
         color: #6c7b7f;
    padding: 0 1.5rem 2rem;
}

.approach-section {
   background: white;
    padding: 100px 0;
}

.approach-content {
    display :       grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.approach-text h2 {
   font-weight: 700;
       color: #2c3e50;
     font-size: 2.5rem;
       margin-bottom: 2rem; 

}

.approach-text p    {
   margin-bottom     :    1.5rem;
  color: #5a6c7d;
   font-size: 1.1rem;
	line-height :      1.7; 
	
}

.approach-visual img {
    width: 100%;

	    height: 450px;

	   object-fit: cover;

		 border-radius:    15px;

	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
	text-align: center;
    color: white;
}

.cta-content h2 {
   font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
	 margin-bottom: 2.5rem;
					max-width: 700px;
  margin-left: auto;
          margin-right :     auto;
    line-height:  1.6;
}

.cta-button {
  background: white;
  color: #667eea;
   padding: 18px 40px;
    border-radius: 50px;
   text-decoration :  none;
  font-weight: 700;
    font-size: 1.2rem;
   transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
} 

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,255,255,0.4);
}

.stats-section {
    padding: 100px 0;
   background: #f8f9fc;
}

.stats-section h2 {
    text-align: center;
   font-size: 2.8rem;
   margin-bottom :        3rem;
   color: #2c3e50;
  font-weight: 700;
}

.stats-grid {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 2rem;
	    margin-top: 3rem;
}

.stat-item {
   text-align: center;
   background: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
         transition :  transform 0.3s ease;
	
}


.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
                    font-size: 3.5rem;
	font-weight   :     800;
  color: #667eea;
  margin-bottom: 1rem;
}

.stat-label     {
	font-size: 1.1rem;
   color: #5a6c7d;
    font-weight: 500;
}

.contact-section {
    padding: 100px 0;
   background: white;
}

.contact-section h2 {
    text-align: center;
    font-size    :2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
  font-weight: 700;
}

.contact-layout {
	display: grid;
    grid-template-columns: 1fr 1fr;
      gap: 4rem;
   margin-top    :        3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
   color  :     #2c3e50;
    font-weight: 600;
}

.contact-info p {
 color: #5a6c7d;
  font-size   :    1.1rem;
	line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details
	{
   margin-top: 2rem;


}

.detail-item {
   margin-bottom: 1.5rem;
}

.detail-item strong {
      color: #667eea;
    display: block;
	margin-bottom: 0.5rem;
     }

.contact-form {
    background: #f8f9fc;
   padding: 2.5rem;
   border-radius: 15px;
  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;
  font-weight: 500;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
   border: 2px solid #e1e8ed;
   border-radius: 8px;
  font-size  :       1rem;
	transition: all 0.3s ease;
   background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color :       #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
      padding: 15px 30px;
    border    :none;
      border-radius: 50px;
   font-size     : 1.1rem;
  font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.main-footer {
   background: #2c3e50;
    color: white;
  padding: 60px 0 20px;
}

.footer-content {
   max-width: 1200px;
  margin:     0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  padding: 0 2rem; 

}

.footer-section h4 {
    margin-bottom: 1rem;
   font-size: 1.2rem;
  color: #ecf0f1;
}

.footer-section p {
          margin-bottom: 1rem;
  color: #bdc3c7;
  line-height: 1.6;


}

.footer-links {
	  list-style: none;
	}

.footer-links li {
    margin-bottom :0.5rem;
}

.footer-links a {
    color  :  #bdc3c7;
   -webkit-transition: color 0.3s ease;
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-bottom {
   border-top   :  1px solid #34495e; 
  margin-top   :   2rem; 
  padding-top    :     1rem; 
   text-align: center; 
    color: #bdc3c7;
}


.mobile-menu-active .nav-links {
   position: absolute;
  top: 100%;
    left: 0;
    right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  flex-direction: column;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
}

.mobile-menu-active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px); 
	
}

.mobile-menu-active .burger-line:nth-child(2) {
   opacity    : 0;
}

.mobile-menu-active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 280px;
        text-align: center;
    }
    
    .hero-image img {
        transform: rotate(0deg);
        height: 300px;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .services-overview h2,
    .stats-section h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .approach-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}.nav-item.active {
  background: rgba(255,255,255,0.3);
    color: #ffffff;
}

.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 140px 0 100px;
   color: white;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom  :1.5rem;
   line-height: 1.3;
}

.about-hero-content p
{
   font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
	line-height  :1.7;
   opacity: 0.95;
}

.our-story {
   padding: 100px 0;
   background    :     #f8f9fc;
}

.story-layout {
  display   :grid;
    grid-template-columns  :      1fr 1fr;
   gap: 4rem;
    align-items   :  center;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
	font-weight: 700;
}

.story-content p {
         margin-bottom: 1.8rem;
    color: #5a6c7d;
         font-size: 1.1rem;
	 line-height    :       1.7;
}

.story-visual img {
   width: 100%;
	 height: 480px;
      object-fit: cover;
	 border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12); 
	
}

.team-expertise {
   padding: 100px 0;
    background: white;
}

.team-expertise h2 {
   text-align: center;
    font-size: 2.8rem;
  margin-bottom     :  3rem;
     color: #2c3e50;
   font-weight: 700;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
    margin-top: 3rem;
}

.expertise-card


{
  background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
  padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #667eea;
} 

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}


.expertise-number {
   font-size: 3rem;
    font-weight: 800;
	color  : #667eea;
	margin-bottom: 1rem;
  opacity: 0.7;
}

.expertise-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
   color:        #2c3e50;
    font-weight:    600;
}

.expertise-card p {
  color: #6c7b7f;
  line-height: 1.6;
    font-size: 1rem;
}

.approach-methodology {
   padding: 100px 0;
  background: #f8f9fc;
}



.methodology-layout {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.methodology-visual img {
  width: 100%;
      height: 450px;
   object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	}


.methodology-content h2


{
  font-size: 2.5rem;
   margin-bottom: 2.5rem;
          color: #2c3e50;
   font-weight: 700;
}

.method-points {
    display: flex;
       flex-direction: column;
   gap:  1.5rem;
}

.method-point {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
}

.method-point:hover  {
  transform: translateX(10px);
}

.method-point h4 {
   color: #667eea;
   font-size: 1.2rem;
  margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-point p {
   color: #5a6c7d;
       line-height  :   1.6;
       margin:  0;
}

.why-choose-us {
  padding: 100px 0;
    background: white;
}

.why-choose-us h2 {
   text-align: center;
   font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
  font-weight: 700; 
	
}

.benefits-layout {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
 align-items: center;
   margin-top: 3rem; 
	
}

.benefits-visual img {
   width: 100%;
  height: 400px;
    object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.benefits-content {
  display: flex;
    flex-direction: column;
  gap: 2rem;}

.benefit-item {
	 padding: 1.5rem;
   background: #f8f9fc;
  border-radius: 12px;
   transition: all 0.3s ease;
}

.benefit-item:hover {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color     :white;
  transform: scale(1.02);
}

.benefit-item h4 {
  font-size: 1.3rem;
    margin-bottom: 0.5rem;
  font-weight   :      600;
}


.benefit-item p {


    margin: 0;
    line-height: 1.6;
	}

.success-stories     {
   padding: 100px 0;
	background: #f8f9fc;
}

.success-stories h2 {
	   text-align: center; 
		font-size: 2.8rem; 
	  margin-bottom: 3rem; 
	    color  :    #2c3e50; 
	    font-weight    :700;
	}

.success-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
   gap:  3rem;
  margin-top: 3rem;
	
}

.success-item {
  background: white;
  border-radius: 15px;
	 overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.success-item:hover {
  transform: translateY(-5px);
}


.success-visual img {
    width: 100%;
	height: 250px;
       object-fit: cover;
}

.success-content {
  padding: 2rem;
}

.success-content h3 {
	 font-size: 1.5rem;
    margin-bottom: 1rem;
	color: #2c3e50;
					font-weight     :600;
}

.success-content p		{
   color: #5a6c7d;
   line-height: 1.7;
   font-size: 1.1rem;
}

.cta-about    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 0;
   text-align: center;
    color: white;
}

.cta-about-content h2 {
   font-size: 2.8rem; 
		margin-bottom: 1.5rem; 
	    font-weight: 700;
}

.cta-about-content p {
	font-size: 1.3rem;
  margin-bottom: 2.5rem;
	max-width: 700px;
    margin-left: auto;
  margin-right: auto;
   line-height: 1.6;

}

.cta-about-btn {
  background: white;
   color: #667eea;
   padding: 18px 40px;
  border-radius: 50px;
   text-decoration: none;
   font-weight: 700;
   font-size: 1.2rem;
    transition: all 0.3s ease;
   display: inline-block;
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.cta-about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,255,255,0.4);
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding     :   140px 0 100px;
  color: white;
     text-align: center;
	
}

.thankyou-content {
    max-width: 800px;
    margin :     0 auto;
}

.success-icon {


  margin-bottom   :   2rem;
	
}

.checkmark-circle {
    width: 80px;
	height: 80px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items     :      center;
  justify-content: center;
               animation     :        scaleIn 0.6s ease; 
	
}

.checkmark {
    width :   25px;
  height: 15px;
    border: 3px solid white;
    border-top: none;
   border-right: none;
  transform: rotate(-45deg);
    animation: checkmarkDraw 0.3s ease 0.3s both;
}@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes checkmarkDraw {
    from { transform: rotate(-45deg) scale(0); }
    to { transform: rotate(-45deg) scale(1); }
}.thankyou-content h1   {
   font-size: 3.2rem;
    font-weight: 700;
   margin-bottom     :        1.5rem;
    line-height: 1.2;
}

.lead-text {
  font-size: 1.4rem;
    margin-bottom: 3rem;
       opacity: 0.95;


}

.confirmation-details {
  background: rgba(255,255,255,0.1);
	padding: 3rem;
  border-radius: 20px;
  text-align: left;
}

.confirmation-details h3 {
    text-align: center;
  font-size     :    1.8rem;
  margin-bottom: 2rem;
}

.next-steps {
   display: flex;
    flex-direction: column;
     gap: 2rem;
}

.step-item 
 {


		display: flex;
   align-items: flex-start;
  gap   :   1.5rem;}

.step-number {
   width: 40px;
   height: 40px;
    background: white;
  color: #667eea;
	border-radius: 50%;
   display: flex;
   align-items: center;
  justify-content: center;
  font-weight: 700;
    font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
   font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p    {
    line-height    :1.6;
    margin    :0;
    opacity: 0.9;
}

.contact-confirmation {

	    padding: 100px 0;
  background: #f8f9fc;}

.confirmation-layout {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
}

.confirmation-visual img  
  {
  width     :     100%;
    height   :    400px;
   object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.confirmation-info h2 {
    font-size: 2.5rem;
	margin-bottom: 2rem;
    color: #2c3e50;
   font-weight: 700;
}

.confirmation-info p {
   color: #5a6c7d;
   font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-direct {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-item   {
  display: flex;
  justify-content :      space-between;
   align-items: center;
  padding     :  1rem 0;
   border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
  color: #667eea;
  font-weight: 600;
}

.additional-resources
	{
 padding: 100px 0;
    background: white;
}

.additional-resources h2 {
   text-align: center;
	font-size :     2.8rem;
  margin-bottom: 3rem;
	color: #2c3e50;
   font-weight: 700;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap:       2rem;
  margin-top: 3rem;
}

.resource-card {
   background  :       #f8f9fc;
       border-radius: 15px;
  overflow: hidden;
	transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.resource-card:hover		{
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.resource-card img {
	width: 100%;
  height: 200px;
  object-fit: cover; 
	
}

.resource-card h3 {
    padding: 1.5rem 1.5rem 0;
  font-size: 1.4rem;
    color:    #2c3e50;
   font-weight: 600;
}

.resource-card p 
 {
    padding: 0 1.5rem 2rem;
	 color: #6c7b7f;
  line-height: 1.6;
}

.return-navigation {
   background: #f8f9fc;
    text-align: center;
   padding: 100px 0;
}  

.navigation-options h2 {

  font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;
  font-weight: 700;
	}

.nav-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.nav-button {


   padding   : 15px 30px;
   border-radius: 50px;
    text-decoration     :      none;
    font-weight: 600;
   font-size: 1.1rem;
  transition: all 0.3s ease;
    display: inline-block;
     }

.nav-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.nav-button.primary:hover {
	  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);}  

.nav-button.secondary {
          background: transparent;
   color    :      #667eea;
    border: 2px solid #667eea;
}

.nav-button.secondary:hover {
  transform: translateY(-2px);
  background: #667eea;
  color: white;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-layout,
    .methodology-layout,
    .benefits-layout,
    .confirmation-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        gap: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .confirmation-details {
        padding: 2rem;
        text-align: center;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-button {
        width: 280px;
        text-align: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .team-expertise h2,
    .why-choose-us h2,
    .success-stories h2,
    .additional-resources h2 {
        font-size: 2.2rem;
    }
    
    .confirmation-details {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}.content-section {
       padding: 100px 0;
   max-width: 800px;
   margin   :0 auto;
	}

.content-section h1 {
    font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 2rem;
  text-align: center;
    font-weight: 700;
}

.content-section h2 {


         font-size: 1.8rem;
   color: #2c3e50;
      margin-top: 2rem;
    margin-bottom  :        1rem;
 font-weight :    600;
}

.content-section p
	{
	 font-size: 1.1rem;
   color: #5a6c7d;
  line-height: 1.7;
   margin-bottom: 1.5rem;
}

.content-section ul {
   list-style-type: disc;
    margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-section ul li {
	 margin-bottom: 0.5rem;
  color: #5a6c7d;
   line-height: 1.7;
   font-size: 1.1rem;
}