* {
   margin: 0;
      padding: 0;
   box-sizing: border-box;
}

body 
 {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
   line-height: 1.6;
  color: #333;
   background: #fafafa;
}

.container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
    position: fixed;
	top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
  max-width :   1200px;
  margin: 0 auto;
  padding: 0 20px;
    display: flex;
  justify-content: space-between;
  align-items     :       center;
   height: 70px;
}

.logo-img {
  height: 45px;
   width: auto;
}

.nav-menu 
 {
    display: flex;
   list-style: none;
   gap   :40px;
}

.nav-link {
   text-decoration: none;
   color: #333;
       font-weight: 500;
   font-size: 16px;
  transition: color 0.3s ease;
        position     :        relative;
}

.nav-link:hover {
	   color: #2563eb;
}

.nav-link::after {
  content: '';
  position: absolute;
  width     :     0;
	 height: 2px;
 bottom: -5px;
      left: 0;
  background: #2563eb;
 transition   :    width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%;
}

.nav-toggle {
        flex-direction: column;
	display: none;
   cursor: pointer;
}

.bar {
      width: 25px;
  height: 3px;
   background: #333;
   margin: 3px 0;
  transition:    0.3s;
    border-radius: 2px;
	}

.hero-section {
      padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :        white;
   overflow: hidden;
}

.hero-content {
    max-width: 1200px;
       margin: 0 auto;
  padding: 0 20px;
   display     :      grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}  

.hero-text h1 {
	font-size: 3.5rem;
  font-weight   :     700;
    line-height: 1.1;
   margin-bottom: 24px;
  background: linear-gradient(45deg, #ffffff, #e0e7ff);
    background-clip: text;
}

.hero-subtitle{
  font-size: 1.25rem;
	margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
	
}

.hero-buttons {
  display: flex;
   gap: 20px;
   flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 16px 32px;
    border-radius: 50px;
  -webkit-transition: all 0.3s ease;
                    text-decoration: none;
  font-weight: 600;
   font-size: 16px;
    transition: all 0.3s ease;
      border: 2px solid transparent;
	display: inline-block;
}

.btn-primary {
   background: #ffffff;
  color: #2563eb;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
     box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
  border-color: rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.hero-image {
    position: relative;
}

.hero-img {


	 width: 100%;
    height: auto;
    border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: rotate(2deg);
   transition: transform 0.5s ease;
}

.hero-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.stats-section {
   padding:    60px 0;
   background: white;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
    text-align: center;
}

.stat-item {
   padding: 30px 20px;
	border-radius: 15px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: transform 0.3s ease;
}

.stat-item:hover
{
  transform: translateY(-5px);
}

.stat-item h3 {
   font-size: 3rem;
  font-weight: 800;
    color :#2563eb;
  margin-bottom: 10px;
}

.stat-item p {
  color  :  #64748b;
  font-weight: 500;
  font-size: 1.1rem;
}

.section-header {
    text-align: center;
   margin-bottom: 60px;}


.section-header h2	{
   font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
   color: #1e293b;
}

.section-header p {
  font-size: 1.2rem;
   color: #64748b;
    max-width: 600px;
  margin: 0 auto;
}

.services-section {
     padding: 100px 0;
    background     :  #f8fafc; 
	
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
   background   :  white;
  border-radius   :  20px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition  :      all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit  :      cover;
}

.service-content {
  padding:      30px;
}



.service-content h3 {
  font-size: 1.4rem;
   font-weight :      700;
  margin-bottom   :  16px;
   color: #1e293b;


}

.service-content p {
    color: #64748b;
   margin-bottom    : 20px;
  line-height: 1.6;
}

.service-features {


  list-style    :none;
   padding: 0;
     }

.service-features li		{
   padding     :    8px 0;
    color    :  #475569;
   position: relative;
    padding-left: 20px;
}

.service-features li::before {
  content: "✓";
   position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    color: white;
        text-align: center;
}

.cta-content h2 {
	 font-size: 2.5rem;
    font-weight: 700;
	 margin-bottom    :      20px;
}

.cta-content p {
   opacity :      0.9;
  margin-right: auto;
    margin-bottom : 40px;
   font-size: 1.2rem;
    margin-left: auto;
  max-width: 700px;
} 

.cta-buttons {
          flex-direction: column;
    gap  :20px;
   display: flex;
  align-items: center;
}

.btn-primary.large {
   padding :     20px 40px;
   font-size: 1.1rem;
}

.contact-info .phone {
   	font-size: 1.1rem;
    font-weight: 600;
   color: #e2e8f0;}

.process-section {
    padding: 100px 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
}

.step {
  text-align: center;
    padding: 30px 20px;
}

.step-number {


      display: inline-block;
         width: 80px;
   height: 80px;
     border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
 font-size:    2rem;
  font-weight: 700;
   line-height: 80px;
  margin-bottom    : 20px;


}

.step h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
   color: #1e293b;
  font-weight: 700;
}


.step p {
  color: #64748b;
    line-height: 1.6;
}

.contact-section {
  padding     :  100px 0;
   background: #f8fafc;
}

.contact-content {
   display    :       grid;
   grid-template-columns: 2fr 1fr;
  gap     : 60px;
}

.contact-form {
  background: white;
	    padding: 40px;
	  border-radius: 20px;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-row 
 {
  display: grid; 
	    grid-template-columns: 1fr 1fr; 
	  gap: 20px;
}

.form-group label {

   display  :block;
   margin-bottom: 8px;
   font-weight: 600;
   color: #374151;


}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 14px 16px;
  border: 2px solid #e5e7eb;
          border-radius: 8px;
   font-size: 16px;
    transition: border-color 0.3s ease;
  -webkit-transition: border-color 0.3s ease;
  font-family: inherit;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline     :      none;
	 border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); 

}

.form-group textarea {
 resize: vertical;
  min-height: 120px;
}

.btn-submit {
      width: 100%;
       padding: 16px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
  border: none;
    border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
	
}

.contact-info-sidebar {
   display: flex;
  flex-direction   :   column;
   gap: 30px;
}

.info-block {
   background: white;
   padding: 30px;
    border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
	
}

.info-block h3 {
  font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
  color :   #1e293b;
}

.info-item {
   margin-bottom: 15px;
    display: flex;
   flex-direction: column;
    gap: 5px;
}

.info-item strong     {
  color: #374151;
    font-weight: 600;
}

.info-item span {
  color :      #64748b; 

}

.benefits-list {
  list-style: none;
   padding: 0;
}

.benefits-list li   {
    padding: 8px 0;
  color: #475569;
    position: relative;
    padding-left     :     20px;
}

.benefits-list li::before {
  content: "✓";
	position: absolute;
	 left: 0;
   color: #2563eb;
  font-weight: bold;
}

.footer {
   background:       #1e293b;
   color: white;
  padding: 60px 0 20px;
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
   margin-bottom: 40px;
}

.footer-logo-img {
  height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.footer-description {
    color: #94a3b8;
  line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {

  font-size   : 1.1rem;
          font-weight: 700;
               margin-bottom: 20px;
   color: white;
	}

.footer-links {
  list-style: none;
    padding: 0;
}

.footer-links li {
   margin-bottom: 10px;
}

.footer-links a {
   color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
 color: #e2e8f0;
}

.contact-details p {
  color: #94a3b8;
	 margin-bottom: 8px;
}

.footer-bottom {
   border-top: 1px solid #334155;
	padding-top    :     20px;
   text-align: center;
   color:      #64748b;
}@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 10px 0;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .info-block {
        padding: 25px;
    }
}.nav-link.active {


			color: #2563eb;
  font-weight: 600;
     }

.nav-link.active::after {
    width: 100%;
}

.about-hero {
   padding: 120px 0 60px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   color   : white;
    text-align:   center;
}

.about-hero-content h1 {
   font-size: 3.2rem;
	font-weight: 700;
    margin-bottom: 24px;
  background: linear-gradient(45deg, #ffffff, #e2e8f0);
  background-clip: text;
}

.hero-lead {
     font-size: 1.3rem;
    max-width: 700px;
  margin  :       0 auto;
   opacity: 0.9;
   line-height  :      1.5;
}

.story-section {
   padding: 100px 0;
    background: white;
}

.story-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
}

.story-text h2 {
  font-size: 2.4rem;
  font-weight : 700;
   margin-bottom: 30px;
       color: #1e293b;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
  color: #475569;
    margin-bottom: 25px;
}

.story-image img {
    width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.mission-values  
  {
   padding: 100px 0;
  background: #f8fafc;
}

.mv-grid {
	    display: grid;

   grid-template-columns: 1fr 1fr;

  gap: 60px;

}

.mv-item {
	background: white;
    padding:     40px;
    border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mv-item h2		{
     font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
   color: #1e293b;

}

.mv-item > p {
                    font-size: 1.1rem;
   line-height: 1.6;
        color: #64748b;
  margin-bottom: 30px;
} 

.mission-points  {
    display: flex;
  flex-direction: column;
   gap: 20px;
}

.point {


    border-left:      4px solid #2563eb;
	 padding-left:        20px;
     }

.point h4	{
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
      margin-bottom: 8px; 

}

.point p{
  color    :      #64748b;
    line-height: 1.5;
}

.values-list {
     display   :        flex;
  flex-direction: column;
        gap: 25px;

}

.value h3 {
    font-size     :      1.2rem;
    font-weight: 700;
   color: #2563eb;
    margin-bottom: 8px;
}

.value p {
    color: #64748b;
	line-height: 1.6;
}


.expertise-section {

	  padding    :        100px 0;
  background: white;
	}

.expertise-grid {
   display: flex;
  flex-direction: column;
    gap: 60px;
}

.expertise-area {
  display    :        grid;
  grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.expertise-area:nth-child(even) {
   grid-template-columns:        1fr 300px;
}

.expertise-area:nth-child(even) .expertise-image {
    order    :      2;
}

.expertise-area:nth-child(even) .expertise-content {
    order: 1;
}

.expertise-image img {
    width: 100%;
   height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.expertise-content h3 {
  color: #1e293b;
   font-size: 1.8rem;
   margin-bottom: 16px;
   font-weight: 700;
}

.expertise-content p {
    font-size: 1.1rem;
   line-height: 1.6;
         color     :        #64748b;
  margin-bottom    :  20px;


}

.expertise-skills {
   list-style: none;
    padding     :  0;
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 8px;
}


.expertise-skills li {
   position: relative;
    padding-left: 20px;
  color: #475569;
  font-size: 1rem;
}

.expertise-skills li::before {
     content: "→";
        position: absolute;
               left: 0;
   color: #2563eb;
  font-weight: bold;

}

.approach-section {
    padding: 100px 0;
    background: #f8fafc;
}

.approach-section h2 {
	font-size: 2.5rem;
  font-weight: 700;
    text-align     :      center;
  margin-bottom: 50px;
	 color: #1e293b;
}

.approach-content {
    display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.approach-text p {
   font-size: 1.1rem;
   margin-bottom :    25px;
  color:   #475569;
    line-height   :        1.7;
}

.approach-features {
    display: flex;
  flex-direction: column;
	 gap: 20px;
}



.feature-box {
	background: white;
    padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 4px solid #2563eb;
}

.feature-box h4 {
  font-size: 1.1rem;

    font-weight: 600;

  color: #1e293b;

    margin-bottom: 10px; 
	
}

.feature-box p {
         color: #64748b;
    font-size: 1rem;
     line-height: 1.5;
}

.achievements-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
  text-align: center; 
	
}

.achievements-section h2 {
    font-size: 2.5rem;

	  font-weight: 700;

	     margin-bottom: 60px;
}

.achievements-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.achievement-item  
  {

  background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.achievement-number    {
   font-size: 3.5rem;
  font-weight: 800;
   margin-bottom: 10px;
  background: linear-gradient(45deg, #ffffff, #e0e7ff);
   background-clip: text;
}

.achievement-item h3 {
	   font-size: 1.2rem;
    font-weight: 600;
    margin-bottom   :  8px;
    opacity: 0.9;


}

.achievement-item p {
   font-size: 1rem;
    opacity: 0.8;
}

.why-us-section {
   padding: 100px 0;
    background:white;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.why-us-image img {


  width: 100%;
    height: auto;
   border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.why-us-text h2 
 {
    font-size: 2.4rem;
    font-weight: 700;
   margin-bottom: 30px;
   color: #1e293b;
}

.reason-list {
    display: flex;
    flex-direction    : column;
    gap: 25px;
}

.reason h4 {
      font-size: 1.2rem;
  font-weight: 600;
       color: #2563eb;
    margin-bottom: 10px; 
	
	}

.reason p {
  color: #64748b;
    line-height: 1.6;
}

.thankyou-main {
   padding-top: 70px;
}

.thankyou-hero {
   padding: 80px 0;
     background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
     text-align: center;
}

.thankyou-content {
    max-width: 800px;
  margin: 0 auto;
}

.success-icon  {
   margin-bottom: 40px;
}

.checkmark-circle {
   width: 120px;
   height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
    display: flex;
  align-items: center;
				 justify-content: center;
  margin    : 0 auto;
    position: relative;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.checkmark {
	    width: 40px;
  height: 20px;
   border-left: 4px solid white;
    border-bottom: 4px solid white;
  transform: rotate(-45deg);
   animation: checkmark-appear 0.8s ease-in-out;
}@keyframes checkmark-appear {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    50% {
        opacity: 0.5;
        transform: rotate(-45deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
}.thankyou-content h1 {
   font-size: 3rem;
	 font-weight: 700;
   margin-bottom: 20px;
}

.thankyou-lead
	{
    font-size: 1.2rem;
  margin-bottom: 50px;
    opacity: 0.9;
  line-height: 1.6;

}

.confirmation-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  margin-top: 40px;
   text-align: left;
}

.detail-box, .contact-reminder {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
         border-radius: 15px;
  backdrop-filter: blur(10px);
}

.detail-box h3, .contact-reminder h3 {
                    font-size: 1.4rem;
  font-weight: 600;
         margin-bottom: 20px;
}

.steps-list {
    display: flex;
  flex-direction: column;
   gap: 20px;
}

.step-item {
	 display: flex;
   gap: 15px;
  align-items :        flex-start;
}

.step-number {

	   width: 30px; 
		height: 30px; 
	  background: rgba(255, 255, 255, 0.2); 
	  border-radius: 50%; 
			display: flex; 
	   align-items: center; 
	    justify-content: center; 
	   font-weight: 700; 
	   font-size   :  1rem; 
	  flex-shrink: 0;
	}

.step-content h4 {
    font-size: 1.1rem;
   font-weight: 600;
  margin-bottom: 5px;

}

.step-content p {
  font-size: 1rem;
   opacity: 0.9;
    line-height: 1.4;
}

.contact-reminder p {
    margin-bottom: 15px;


}

.urgent-contact {
   margin-top    :    15px;
}

.phone-contact, .address-contact {
   margin-bottom: 10px;


}

.contact-label {
   font-weight: 600;
    opacity: 0.8;
}

.what-to-expect {
  padding: 100px 0;
        background: white;
}  

.what-to-expect h2 {
	font-size: 2.5rem;
    font-weight    : 700;
   text-align: center;
    margin-bottom: 60px;
   color: #1e293b;

}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.expectation-item {
  text-align  :   center;
   padding: 30px 20px;
}

.expectation-icon {
   margin-bottom: 25px;
}

.icon-circle {
  width: 80px; 
	  height: 80px; 
	  border-radius: 50%; 
	    margin: 0 auto; 
	  display: flex; 
	    align-items: center; 
	    justify-content: center; 
	   position    :        relative;
}

.icon-circle.consultation {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.icon-circle.analysis {
  background: linear-gradient(135deg, #10b981, #059669);
}

.icon-circle.plan {


  background: linear-gradient(135deg, #f59e0b, #d97706);

}

.icon-circle.support {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.icon-circle::after {
  content: "";
   width: 40px;
    height :    40px;
    background: white;
		 border-radius: 8px;
	opacity: 0.9; 

}

.expectation-item h3 {
  font-size: 1.3rem;
   font-weight: 600;
  margin-bottom: 15px;
   color: #1e293b;
}

.expectation-item p {
      color: #64748b;
    line-height: 1.6;
}

.success-stories {

	  padding: 100px 0;
      background: #f8fafc;

}

.success-stories h2 {
    font-size: 2.5rem;
 font-weight: 700;
   text-align: center;
    margin-bottom: 20px;
  color: #1e293b;
}

.section-intro {
    text-align: center;
   font-size   :      1.1rem;
   color: #64748b;
   margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
       margin-right: auto;
}

.stories-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap    :30px;
	
}

.story-card {
  background: white;
    border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.story-card:hover {
     transform: translateY(-5px);
}

.story-content h3 {
   font-size: 1.2rem;
    font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}

.story-content p {
   color: #64748b;
   line-height: 1.6;
  margin-bottom: 20px;
}

.story-results {
    display: flex;
    gap: 10px;
   flex-wrap   :        wrap;
}

.result {
  background: #e0f2fe;
   color: #0369a1;
	padding: 6px 12px;
    border-radius: 20px;
   font-size   :     0.9rem;
  font-weight: 500;
}

.additional-resources {
    padding    :    100px 0;
    background: white;
}

.additional-resources h2 {
  font-size: 2.5rem;
  font-weight: 700;
    text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

.resources-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
   align-items: center;
}

.resource-text p {
    font-size: 1.1rem;
	color   :   #475569;
  line-height: 1.6;
		margin-bottom: 30px;
}

.preparation-checklist


{
   display: flex;
	flex-direction: column;
	gap: 25px;
}

.checklist-item {
      border-left :      4px solid #2563eb;
   padding-left: 20px;
     }

.checklist-item h4 {
	   font-size: 1.2rem;
    font-weight: 600;
	color: #1e293b;
   margin-bottom    :  8px;
     }

.checklist-item p {
  color:      #64748b;
    line-height: 1.5;
}

.resource-image img
{
   width: 100%; 
  height: auto; 
   border-radius: 15px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}@media screen and (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-area {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .expertise-area:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise-area:nth-child(even) .expertise-image,
    .expertise-area:nth-child(even) .expertise-content {
        order: initial;
    }
    
    .expertise-skills {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .confirmation-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-text h2,
    .why-us-text h2 {
        font-size: 2rem;
    }
    
    .mv-item {
        padding: 30px 25px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.8rem;
    }
    
    .checkmark-circle {
        width: 100px;
        height: 100px;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .detail-box, .contact-reminder {
        padding: 25px 20px;
    }
}.cookies-section {
   	padding :        100px 0;
    background: #f8fafc;}

.cookies-content {
     max-width: 800px; 
   margin: 0 auto; 
    background: white; 
   padding: 40px; 
    border-radius: 20px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookies-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
   color: #1e293b;
     }

.cookies-content p {
   color: #64748b;
        margin-bottom: 20px;
   line-height   :   1.6;
}

.privacy-section {
   padding: 100px 0;
    background    :        #f8fafc;
}

.privacy-content {
   max-width: 800px;
  margin: 0 auto;
    background: white;
	padding: 40px;
       border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-content h3 {
   font-size: 1.6rem;
	       font-weight: 700;
	        margin-bottom: 20px;
	               color   :        #1e293b; 

}

.privacy-content p {
   color: #64748b;
    margin-bottom: 20px;
     line-height: 1.6;
}