* {
	margin: 0;
  padding:       0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
  color: #2c3e50;
	 background-color: #fdfdfd;
}

.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: fixed;
    width: 100%;
  top: 0;
    z-index     :     1000;
   transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.navigation-wrapper {
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
         margin: 0 auto;
    display: flex;
  justify-content: space-between;
      align-items: center;
  padding:   15px 0;}

.logo-section .company-logo
	{
  height     :       45px;
	   width: auto;
}

.nav-menu {


	display: flex;
    list-style: none;
   gap: 40px;
}

.nav-link {
   text-decoration     :       none;
  color: #2c3e50;
  font-weight: 500;
    font-size: 16px;
  padding: 8px 16px;
    border-radius: 25px;
   transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:   white;
  transform: translateY(-2px);
}

.menu-toggle {
   display    :        none;
   flex-direction: column;
    cursor  :     pointer;
    gap: 4px;
}



.menu-toggle span {
   width: 25px;
	height: 3px;
   background: #2c3e50;
         transition: 0.3s;
	border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px); 

}

.hero-area


{
    margin-top: 80px;
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   min-height: 70vh;
  display: flex;
    align-items: center;
}

.hero-content {
   max-width   :      1200px;
	margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
                    gap: 60px;
    align-items: center;
}

.hero-text h1 {
      font-size: 3.2em;
  font-weight: 700;
  color: #2c3e50;
   margin-bottom     :      25px;
                    line-height: 1.2;

}

.hero-description {
  font-size: 1.2em;
  color: #5a6c7d;
    margin-bottom: 35px;
         line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary   {
      padding:     15px 30px;
   text-decoration: none;
  border-radius: 30px;
    font-weight   : 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :    white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-primary:hover {


  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);

}

.cta-secondary {
    background: transparent;
          color: #667eea;
   border: 2px solid #667eea;
}

.cta-secondary:hover {

	    background   :   #667eea; 
	  color: white; 
	  transform: translateY(-3px);
     }

.hero-image img {
  width: 100%;
  border-radius  : 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-showcase {
   padding: 100px 20px;
    background: white; 
	
}

.section-container {
   max-width: 1200px; 
	  margin :        0 auto;
}  

.expertise-showcase h2 {
    text-align: center;
    font-size    :     2.8em;
   margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;


}

.service-card {
   background: white; 
	border-radius: 15px; 
   padding: 30px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
  transition  :    all 0.3s ease; 
  text-align  :  center;
}

.service-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card img {
       width: 100%;
   height: 200px;
        object-fit: cover;
    border-radius: 10px;
   margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5em;
  margin-bottom:  15px;
   color: #2c3e50;
   font-weight: 600;
}

.service-card p {
  color: #5a6c7d;
  line-height: 1.6;
    font-size: 1em;
}

.transformation-section {
    padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.content-wrapper {
	          max-width: 1200px;
    margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;


}

.transform-text h2 {
    font-size: 2.5em;
          margin-bottom: 30px;
   font-weight: 700;
}

.transform-text > p {
   font-size: 1.1em;

   margin-bottom: 40px;

   opacity: 0.9;

   line-height: 1.7;

}

.benefits-list {
    display: flex;
   flex-direction: column;
    gap:    25px;
}

.benefit-item h4    {
  font-size: 1.3em;
    margin-bottom: 10px;
  font-weight    :   600;
}

.benefit-item p {
   opacity: 0.85;
    line-height: 1.5;
}

.transform-visual img {

	  width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);


}

.cta-section {
    background     :    #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.cta-content   {
	 max-width: 800px;
  margin   : 0 auto;
} 

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
               color: #2c3e50;
    font-weight: 700;
}

.cta-content p {
         font-size: 1.2em;
  margin-bottom: 40px;
   color: #5a6c7d;
    line-height: 1.6;
}

.cta-button-large {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 40px;
    text-decoration: none;
	border-radius   :  35px;
   font-size: 1.2em;
  font-weight: 600;
	transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  display: inline-block;
}

.cta-button-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.contact-section {
  padding    :        100px 20px; 
	    background: white;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
   font-size: 2.8em;
	margin-bottom: 20px;
   color: #2c3e50;
    font-weight: 700;
}

.contact-intro
	{
   text-align: center; 
	   font-size: 1.1em; 
	   margin-bottom: 50px; 
	   color: #5a6c7d; 
	  line-height: 1.6;
}

.contact-form {
   	background: #f8f9fa;
    padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

.form-row {
    display: grid;
  grid-template-columns:   1fr 1fr;
	 gap: 20px;
                    margin-bottom: 25px;


}

.input-group {
    position: relative;
     }

.input-group.full-width {
    margin-bottom: 25px;
}

.input-group input, .input-group select, .input-group textarea {
               width: 100%;
 -webkit-border-radius: 10px;
      padding: 15px 20px;
   -moz-border-radius: 10px;
  border: 2px solid #e1e8ed;
    border-radius: 10px;
 font-size: 16px;
   transition: all 0.3s ease;
   background: white;
   font-family  :  inherit;
}  

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {

	  outline :    none;
    border-color: #667eea;
  box-shadow: 0 0 15px rgba(102, 126, 234, 0.2);




}

.input-group.focused input, .input-group.focused select, .input-group.focused textarea {
   border-color: #667eea;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 18px 40px;
    border  : none;
  border-radius: 30px;
  font-size: 1.1em;
   font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    width:     100%;


}

.submit-btn:hover {
     transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);



}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
   font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 600;
  color  :      #ecf0f1;
}

.footer-logo {
  height: 40px;
  width: auto;
    margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.company-description {
   opacity: 0.8;
    line-height: 1.6;
  font-size: 0.95em;
}


.footer-links {
   list-style: none;

}

.footer-links li {
    margin-bottom: 10px;


}

.footer-links a {
  color: rgba(236, 240, 241, 0.8);
   text-decoration: none;
   transition: color 0.3s ease;
    font-size: 0.95em;
}

.footer-links a:hover {


   color: #667eea; 
} 

.contact-info p {
   margin-bottom: 8px;
  opacity: 0.8;
  font-size: 0.95em;
}

.footer-bottom {
         text-align   :        center;
    padding-top: 30px;
  border-top: 1px solid rgba(236, 240, 241, 0.1);
}

.footer-bottom p {


    opacity: 0.7;
    font-size: 0.9em;

}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin-bottom: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-showcase h2, .contact-section h2, .cta-content h2 {
        font-size: 2.2em;
    }
    
    .transform-text h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .hero-area {
        padding: 60px 15px;
    }
    
    .hero-text h1 {
        font-size: 2em;
    }
    
    .hero-description {
        font-size: 1.1em;
    }
    
    .expertise-showcase, .contact-section {
        padding: 60px 15px;
    }
    
    .transformation-section, .cta-section {
        padding: 60px 15px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 20px;
    }
}.about-hero {
       margin-top: 80px;
       padding: 80px 20px;
     background: linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 100%);
       min-height: 60vh;
      display: flex;
     align-items: center;
}

.about-hero-content {
   max-width: 1200px;
   margin: 0 auto;
	 display: grid;
    grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
   align-items: center;
}

.hero-text-section h1 {
  font-size: 2.8em;
   font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
   line-height: 1.3;


}

.hero-subtitle {
    font-size: 1.15em;
  color: #5a6c7d;
  line-height: 1.7;
    margin-bottom :    0;
}

.hero-visual img {

   width: 100%;
   border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);


}

.mission-vision {
  padding: 90px 20px;
  background: white;

}

.mission-container {
   max-width:      1200px;
    margin     :   0 auto;
}

.mission-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.mission-item {
  text-align: center;
  padding: 40px 30px;
   background: #f8f9fa;
  border-radius: 15px;
   transition :transform 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-5px);
}


.mission-item h2 {

	    font-size :       1.8em;
	  color :#2c3e50;
	   margin-bottom: 20px;
	  font-weight: 600;

}

.mission-item p {
    color: #5a6c7d;
	line-height: 1.6;
  font-size: 1.05em;
}

.experience-stats {
   padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color : white;
}

.stats-wrapper {
  max-width    :  1200px;
    margin: 0 auto;
    text-align  :      center;
}

.stats-wrapper h2 {
   font-size: 2.5em;
  margin-bottom: 60px;
  font-weight: 700;
}

.stats-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap    :   40px;
}

.stat-card {
    text-align: center;
  padding  :  30px;
}

.stat-number {
  font-size: 3.5em;
  font-weight: 800;
    margin-bottom: 10px;
    color   :        white;
     }

.stat-label {
  font-size     :     1.1em;
  opacity: 0.9;
         font-weight: 500;
}

.approach-methodology {
  padding: 90px 20px;
    background: white;

}

.approach-content {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
   grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
   align-items :center;
}

.approach-text h2 {
	 font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 700;
}

.approach-intro {
   font-size: 1.15em;
   color  :#5a6c7d;
  line-height: 1.7;
  margin-bottom: 40px;
}

.methodology-list {
  display: flex;
    flex-direction: column;
   gap: 30px;
}

.method-item h3 {

	  font-size: 1.4em;

	  color: #2c3e50;

	    margin-bottom: 12px;

	   font-weight: 600;
}

.method-item p {

    color: #5a6c7d;
  line-height: 1.6;
   font-size:     1.05em;
     }

.approach-visual img {
     width: 100%; 
    border-radius: 15px; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}  

.success-stories {
	padding: 90px 20px;
  background :    #f8f9fa; 

}

.stories-container {
       max-width: 1200px;
    margin: 0 auto;
}

.success-stories h2 {
       text-align   :   center;
  font-size: 2.5em;
    margin-bottom: 60px;
   color: #2c3e50;
    font-weight: 700; 

}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.story-card	{
        background: white;
    border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
}

.story-card img {
    object-fit: cover;
 height: 220px;
   width: 100%;
}

.story-content {
  padding: 30px;
}

.story-content h3 {
   font-size: 1.4em;
  color: #2c3e50;
   margin-bottom: 15px;
    font-weight: 600;
}

.story-content p {
  color: #5a6c7d;
    line-height: 1.6;
  font-size: 1.05em;
}

.why-choose-us {
    padding: 90px 20px;
  background: white; 
	
}

.choose-wrapper {


   max-width: 1200px;
   margin    :       0 auto;
	}

.why-choose-us h2 {
      text-align: center;
  font-size: 2.5em;
    margin-bottom: 60px;
   color: #2c3e50;
    font-weight: 700;

}

.advantages-container {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 35px;
}

.advantage-item
	{
    text-align: center;
  padding: 35px 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   border-radius: 15px;
  transition: transform 0.3s ease;
	
}

.advantage-item:hover {
  transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
}

.advantage-item h3{
   font-size: 1.5em;
   color: #2c3e50;
  margin-bottom: 18px;
   font-weight: 600;
}

.advantage-item p {
	color: #5a6c7d;
  line-height: 1.6;
    font-size  :      1.05em;
}

.cta-about	{
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
    color: white;
}

.cta-about-content {
    max-width    :      800px;
   margin: 0 auto;
}

.cta-about h2 {
	 font-weight: 700;
   font-size: 2.5em;
   margin-bottom: 25px;
}

.cta-about p {
	font-size: 1.2em;

	    margin-bottom: 40px;

	  opacity: 0.9;

	   line-height: 1.6;
}

.back-to-home-btn {
  background: rgba(255, 255, 255, 0.15);
   color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
	 font-weight: 600;
   transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
                    display: inline-block;
	
}

.back-to-home-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
}

.thankyou-hero {
	margin-top: 80px;
    padding: 80px 20px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
   min-height: 80vh;
}

.thankyou-container {
  max-width: 900px;
    margin: 0 auto;
  text-align: center;
}


.success-icon {
	margin-bottom: 40px;
}

.checkmark-circle 
 {
    width: 100px;
	 height    : 100px;
 border-radius  :50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          margin: 0 auto;
    position: relative;
    animation: scaleIn 0.6s ease-out;

}

.checkmark {
    position    :absolute;
   top: 50%;
    left   :        50%;
  transform: translate(-50%, -50%);
   width: 40px;
    height: 20px;
      border-left: 4px solid white;
   border-bottom     :       4px solid white;
    transform-origin: center;
  transform: translate(-50%, -60%) rotate(-45deg);
   animation: drawCheck 0.4s ease-out 0.3s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes drawCheck {
    0% { width: 0; height: 0; }
    50% { width: 40px; height: 0; }
    100% { width: 40px; height: 20px; }
}.thankyou-content h1 {
  font-size: 2.8em;
   color: #2c3e50;
  margin-bottom: 25px;
    font-weight: 700;
}

.thankyou-message {
    font-size   :        1.2em;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom :       60px;
}

.next-steps {
    margin-bottom:       60px;
}

.next-steps h2 {
   font-size: 2.2em;
       color: #2c3e50;
   margin-bottom: 40px;
  font-weight   :       600;
}

.steps-timeline {
   display: flex;
  flex-direction: column;
    gap: 30px;
    max-width: 700px;
  margin: 0 auto; 
	
}

.step-item   {
  display: flex;
  align-items: flex-start;
   gap:  25px;
   text-align: left;
	 padding: 25px;
   background: white;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	 transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-3px);
}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	width: 45px;
   height    :     45px;
	border-radius: 50%;
  display: flex;
    align-items: center;
	 justify-content: center;
	 font-weight: 700;
	font-size  : 1.2em;
    flex-shrink: 0;
}

.step-content h3 {
     font-size: 1.4em;
	color: #2c3e50;
                    margin-bottom: 10px;
   font-weight: 600;}

.step-content p {
	color: #5a6c7d;
	 line-height: 1.6;
   font-size:  1.05em;
}

.additional-info {
  margin-bottom: 60px;


}

.additional-info h2 {
   font-size: 2.2em;
    color: #2c3e50;
  margin-bottom    : 40px;
   font-weight: 600;
}

.info-grid {

		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :       30px;

}

.info-card {
    background: white;

	  padding  : 30px;

	   border-radius: 15px;

	  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

	 transition: transform 0.3s ease;

	  text-align: left;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
       font-size: 1.3em;
  color: #2c3e50;
   margin-bottom: 15px;
  font-weight: 600;

}

.info-card p {
   color: #5a6c7d;
  line-height: 1.6;
    font-size: 1.05em; 

}

.testimonial-section {
   margin-bottom    : 60px;
}

.testimonial-section h2 {
   font-size: 2.2em;
  color: #2c3e50;
    margin-bottom: 40px;
	font-weight: 600;
}

.testimonial-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :      white;
  padding: 40px;
	border-radius: 15px;
    max-width: 700px;
  margin: 0 auto;
   text-align :    left;
}

.testimonial-card blockquote


{
  font-size: 1.15em;

	   line-height: 1.7;

	   margin-bottom: 20px;

	    font-style: italic;

	    opacity: 0.95;
}

.testimonial-card cite {
    font-size: 1em;
   opacity: 0.8;
	font-weight: 500;
	
}

.navigation-options {
  margin-bottom: 40px;
}

.nav-buttons


{
   display: flex;
    gap: 20px;
   justify-content: center;
         flex-wrap: wrap;
}

.primary-nav-btn, .secondary-nav-btn {
   padding: 15px 30px;
   text-decoration:       none;
    border-radius: 30px;
   font-weight :      600;
        transition: all 0.3s ease;
  display: inline-block;
}

.primary-nav-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);

}

.primary-nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);}

.secondary-nav-btn   {
       background: transparent;
   color: #667eea;
   border:       2px solid #667eea;
     }

.secondary-nav-btn:hover {
  -ms-transform: translateY(-3px);
     background: #667eea;
  color: white;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
}

.contact-details   {
    padding     :      60px 20px;
  background: white;
}

.contact-summary {
     max-width: 800px;
      margin: 0 auto;
   text-align: center;}  

.contact-summary h2 {
   font-size: 2.2em;
  color: #2c3e50;
    margin-bottom: 40px;
                    font-weight: 600;
}

.contact-info-detailed {
	display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 30px;
}

.contact-item {
		background: #f8f9fa;
   padding: 30px 25px;
  border-radius: 15px;
   text-align: center;

}

.contact-item h3 {
   font-size: 1.3em;
  color: #2c3e50;
  margin-bottom: 15px;
    font-weight: 600;
}

.contact-item p   {
  color: #5a6c7d;

	  line-height: 1.6;

	    font-size: 1.05em;
}@media (max-width: 768px) {
    .about-hero-content, .approach-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text-section h1, .thankyou-content h1 {
        font-size: 2.2em;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stories-grid, .advantages-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .steps-timeline {
        gap: 20px;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-nav-btn, .secondary-nav-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-info-detailed {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .about-hero, .thankyou-hero {
        padding: 60px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.8em;
    }
    
    .approach-methodology, .success-stories, .why-choose-us {
        padding: 60px 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .hero-text-section h1 {
        font-size: 1.9em;
    }
    
    .thankyou-content h1 {
        font-size: 2em;
    }
}.privacy-section, .cookies-section		{
   padding: 100px 20px;
  background: #f8f9fa;
}

.privacy-content, .cookies-content {
		max-width: 800px;
   margin: 0 auto;

}

.privacy-content h2, .cookies-content h2 {
    font-size: 2.8em;
  margin-bottom: 30px;
          color: #2c3e50;
   font-weight: 700;
   text-align: center;
}

.privacy-content h3, .cookies-content h3 {
   margin: 30px 0 15px;
  font-size: 1.5em;
    font-weight: 600;
   color: #2c3e50;
}

.privacy-content p, .cookies-content p {
  font-size: 1.1em;
    color: #5a6c7d;
   line-height: 1.7;
     margin-bottom: 20px;
}

@media (max-width: 768px) {
    .privacy-section, .cookies-section {
        padding: 60px 15px;
    }

    .privacy-content h2, .cookies-content h2 {
        font-size: 2.2em;
    }

    .privacy-content h3, .cookies-content h3 {
        font-size: 1.3em;
    }

    .privacy-content p, .cookies-content p {
        font-size: 1em;
    }
}