* {
  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;
}

.container {
  max-width: 1200px;
	 margin: 0 auto;
    padding: 0 20px;
}

.primary-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: fixed;
  top: 0;
          width: 100%;
     z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	
}

.nav-wrapper {
	max-width: 1200px;
  margin   :     0 auto;
   padding: 0 20px;
  display: flex;
   justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand-section .brand-logo {
   height     :       45px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {

	    display    :      flex;
    gap: 30px;}

.nav-item {
       color: white;
    text-decoration:      none;
  font-weight: 500;
   transition: color 0.3s ease;
	position: relative;
}


.nav-item:hover {
  color: #f8f9fa;
}

.nav-item::after {

  content: '';
   position: absolute;
    width: 0;
   height: 2px;
    bottom: -5px;
    left: 0;
  background-color: #fff;
     transition: width 0.3s ease;
	
	}


.nav-item:hover::after   {
  width: 100%;
}

.mobile-toggle {
               display: none;
  flex-direction: column;
   background: none;
    border: none;
  cursor: pointer;
   padding: 5px;
}

.burger-line {
    width: 25px;
  height: 3px;
      background-color: white;
  margin: 3px 0;
    transition:   all 0.3s ease;
}

.mobile-menu {
    display: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 20px;
}

.mobile-nav-item    {
    display: block;
    color: white;
         text-decoration  :   none;
    padding   :    15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight     : 500;
}

.mobile-nav-item:hover {
    color: #f8f9fa;
}

.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 120px 0 80px;
  margin-top: 70px;
}

.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.2em;
    font-weight: 700;
	 color: #2c3e50;
    margin-bottom: 20px;
  line-height    :        1.2;
     }

.hero-subtitle {
    font-size: 1.3em;
   color: #5a6c7d;
   margin-bottom  :      35px;
  line-height: 1.6;
}

.hero-actions {
    display: flex;
   gap: 20px;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
  padding: 15px 30px;
                    font-weight: 600;
  display   : inline-block;
    transition: all 0.3s ease;
	font-size: 1.1em;
   border-radius: 8px;
    text-decoration: none;
}

.primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :        white;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.secondary-btn {
   border: 2px solid #667eea;
  color: #667eea;
   background    :transparent;
}

.secondary-btn:hover {
    background:     #667eea;
    color: white;
  transform: translateY(-2px);
}

.hero-visual img {
  width: 100%;
    height: auto;
       border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
	
}

.features-overview {
   padding: 80px 0;
    background: white;
}

.features-overview h2 {
   text-align: center;
  font-size: 2.5em;
	 color: #2c3e50;
    margin-bottom   :      60px;
    font-weight: 700; 

}

.features-grid {
   display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap    :    40px;
}

.feature-card {
     background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  padding   : 40px 30px;
   border-radius: 12px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #e1e6ff;

}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.feature-card h3 {


   font-size    :        1.5em;
   color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600; 

     }

.feature-card p {
  color: #5a6c7d;
    line-height: 1.7;
   font-size: 1.05em;
}

.training-programs {
   padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.program-intro	{
    text-align   :   center; 
	  margin-bottom: 60px;
}

.program-intro h2{
  font-size: 2.5em;
   color: #2c3e50;
  margin-bottom: 20px;
    font-weight: 700;
}

.program-intro p{
  font-size :     1.2em;
    color: #5a6c7d;


}

.programs-container {
                    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));

	   gap: 50px;

	   max-width: 1200px;

	    margin   :  0 auto;

	  padding: 0 20px;
}

.program-item {
	   background:white;
  border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.program-item:hover {
  transform: translateY(-8px); 

}

.program-item img {
    width: 100%;
    height     :        250px;
    object-fit :      cover;
}

.program-details {
   padding: 35px;
}

.program-details h3 {


  font-size: 1.8em;
    color: #2c3e50;
   margin-bottom  :        15px;
   font-weight: 600;
     }

.program-details p {
  color: #5a6c7d;
  margin-bottom: 25px;
  line-height :  1.6;
	font-size: 1.05em;
}

.program-features
	{

	    list-style: none;
    padding: 0;
     }

.program-features li {
	color: #667eea;
  margin-bottom: 10px;
    position: relative;
	 padding-left: 20px;
  font-weight: 500;
}

.program-features li::before {
  content: '✓';
   position: absolute;
  left: 0;
  color: #667eea;
   font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding    :      80px 0;
   color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
   max-width: 1200px;
        margin :     0 auto;
}

.cta-content {
      padding: 0 20px;


}

.cta-content h2 {
   font-size: 2.8em;
   margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p


{
	font-size: 1.2em;
	margin-bottom    :      35px;
   opacity: 0.9;
   line-height: 1.6;
}

.cta-button  
  {
  background: white;
  color: #667eea;
  padding: 18px 35px;
	 text-decoration: none;
	border-radius: 8px;
   font-weight: 600;
         font-size: 1.1em;
    transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
     transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);


}

.cta-visual {

    padding: 0 20px;


}

.cta-visual img {
     height: auto;
    border-radius: 15px;
    width: 100%;
}

.methodology-section {
   padding: 80px 0;
   background: white;
}

.methodology-section h2 {
   text-align: center;

	    font-size: 2.5em;

	  color: #2c3e50;

	    margin-bottom     :       60px;

	   font-weight: 700;

}

.methodology-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap  :   50px;
}

.method-step	{
    text-align: center;
  padding: 30px;
}

.step-number {
    width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
    border-radius: 50%;
  display: flex;
   align-items: center;
    justify-content: center;
  font-size: 2em;
	 font-weight: bold;
  margin   :  0 auto 25px;
}

.method-step h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 15px;
   font-weight: 600;


}

.method-step p {
    color: #5a6c7d;
   line-height: 1.6;
    font-size:       1.05em;
}

.testimonials-section {
	padding:  80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
	}

.testimonials-section h2 {

   text-align: center;
      font-size    :        2.5em;
      color: #2c3e50;
       margin-bottom: 60px;
       font-weight:   700;
     }

.testimonials-wrapper {
    display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
    max-width    :  1000px;
  margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
  padding   :        40px;
 border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
   top: -10px;
   left: 20px;
  font-size: 6em;
   color: #667eea;
  opacity: 0.3;
    font-family: serif;
}

.testimonial-card p {
    color: #5a6c7d;
  font-size: 1.1em;
  line-height: 1.7;
   margin-bottom: 25px;
       font-style: italic;
}

.testimonial-author strong   {
      color: #2c3e50;

	  font-size  :     1.1em;
}

.testimonial-author span {
   color: #667eea;
	 display: block;
   margin-top: 5px;
    font-size: 0.95em;
}

.contact-section {
  padding: 80px 0;
   background   :        white;
}

.contact-content {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
}

.contact-info h2 {
	 font-size: 2.5em;
   color: #2c3e50;
  margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p


{
  color: #5a6c7d;
	 font-size: 1.2em;
  margin-bottom: 35px;
 line-height     :      1.6;


}

.contact-details {
  display: flex;

  flex-direction: column;

   gap: 20px;
}

.contact-item {
	display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-item strong {

	  color: #2c3e50;
  font-size: 1.1em;


}

.contact-item a {
    color: #667eea;
  text-decoration: none;
   font-weight     :      500;}

.contact-item a:hover {
   text-decoration: underline;
}

.contact-item span {
    color: #5a6c7d;
}

.contact-form {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    padding: 40px;
  border-radius: 12px;
  border: 1px solid #e1e6ff;
}

.form-group {
    margin-bottom   :  25px;
	
}

.form-row {
  display: grid; 
    grid-template-columns: 1fr 1fr; 
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
   font-weight: 500;
	font-size: 1.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
   width     :      100%;
   padding: 12px 15px;
    border: 2px solid #e1e6ff;
   border-radius: 8px;
  font-size: 1em;
	transition : border-color 0.3s ease, box-shadow 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;
    border :     none;
    padding: 15px 35px;
         border-radius: 8px;
  cursor    :    pointer;
  font-size: 1.1em;
    font-weight: 600;
      transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {


  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
	
	}

.site-footer {
  background: #2c3e50;
   color: white;
    padding: 50px 0 20px;
}

.footer-content {
   max-width: 1200px;
       margin: 0 auto;
	padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
    margin-bottom: 30px;
     }

.footer-brand .footer-logo {
   height:     50px;
    width  :      auto;
  filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap    :       40px;
}

.footer-section h4 {
   color   :       #667eea;
	  margin-bottom: 15px;
	  font-size: 1.2em;
		font-weight: 600;
	
}

.footer-section ul {
    list-style: none;
   padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a  
  {
    color: #bdc3c7;
   text-decoration : none;
               transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section p {
    color: #bdc3c7;
  line-height: 1.6;
         margin-bottom: 10px;
}

.footer-section p a {


   color: #667eea;
   text-decoration :      none;}

.footer-section p a:hover {
   text-decoration     :     underline;
	
}

.footer-bottom {
  max-width: 1200px;
    margin:        0 auto;
   padding: 20px;
    border-top: 1px solid #34495e;
  text-align: center;
   color: #bdc3c7;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-toggle.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .cta-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .programs-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2em;
    }
    
    .features-overview h2,
    .methodology-section h2,
    .testimonials-section h2,
    .program-intro h2,
    .contact-info h2 {
        font-size: 2em;
    }
    
    .cta-content h2 {
        font-size: 2.2em;
    }
    
    .primary-btn,
    .secondary-btn,
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .feature-card,
    .program-details,
    .testimonial-card,
    .contact-form {
        padding: 25px;
    }
}.nav-item.active {
  color:   #f8f9fa;
    font-weight: 600;
}

.nav-item.active::after		{
   width: 100%;
}

.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         padding: 120px 0 80px;
	 margin-top: 70px;
    color: white;
         text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 25px;
   line-height: 1.2;
}

.about-subtitle {
 font-size: 1.4em;
  opacity: 0.9;
   line-height: 1.6;
   max-width: 800px;
    margin: 0 auto;
}

.company-story {


    padding: 80px 0; 
   background: white;
     }

.story-content	{
  align-items: center;
   display: grid;
  gap: 60px;
   grid-template-columns: 1fr 1fr;
}

.story-text h2 {
   font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;

}

.story-text p  
  {
  color: #5a6c7d;

  font-size:      1.1em;

    line-height     :    1.7;

   margin-bottom: 20px;
}

.story-visual img {
    width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-expertise {
    padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.team-expertise h2 {
  text-align: center;
   font-size: 2.5em;
    color: #2c3e50;
	 margin-bottom: 60px;
    font-weight: 700;
}

.expertise-grid {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 30px;
}

.expertise-item     {
  background     :       white;
   padding: 35px;
	border-radius   :  12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-item h3 {
    font-size: 1.4em;
    color: #667eea;
   margin-bottom: 15px;
  font-weight: 600;
}

.expertise-item p {
  color: #5a6c7d;
	 line-height: 1.6;
}

.values-mission {
  padding: 80px 0;
    background: white;
} 

.values-content {
	display    :grid;
    grid-template-columns: 1fr 1fr;
    gap    :        60px;
}

.mission-block h2,
.values-block h2 {
	font-size: 2.2em;
	 color: #2c3e50;
        margin-bottom: 25px;
   font-weight: 700;
}

.mission-block p,
.values-block p {
    color:       #5a6c7d; 
	  font-size: 1.1em; 
	   line-height: 1.7;


}

.values-list {
    list-style: none;
   padding: 0;
}

.values-list li {
        color: #5a6c7d;
    margin-bottom: 15px;
	 padding-left: 25px;
   position    :   relative;
   line-height: 1.6;
}

.values-list li::before {
  content: '✓';
    position: absolute;
   left: 0;
   color: #667eea;
   font-weight: bold;
        font-size: 1.2em; 

}

.values-list strong {
    color   :      #2c3e50;

}

.approach-methodology {
    padding: 80px 0;

	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.approach-methodology h2 {
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  color: #2c3e50;
   margin-bottom: 60px;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
         align-items: center;
}

.approach-visual img {

   width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);

}

.approach-text h3 {
  font-size: 2em;

	          color: #2c3e50;

	 margin-bottom: 20px;

	    font-weight: 600;
}  

.approach-text > p	{
     color :#5a6c7d;
   font-size: 1.1em;
	line-height :     1.7;
  margin-bottom   :        35px;
     }

.approach-features {
  display: flex;
   gap: 25px;
  flex-direction: column;
}

.feature-point {
   background: white;
   padding: 25px;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-point h4 {
 color: #667eea;
  font-size: 1.2em;
  margin-bottom: 10px;
   font-weight: 600;
}

.feature-point p {
	   color: #5a6c7d;

	  line-height: 1.6;

		margin: 0;
	}

.why-choose-us  {
  padding: 80px 0;
	background: white;
}

.why-choose-us h2 {
   text-align: center;
  font-size: 2.5em;
	color: #2c3e50;
   margin-bottom: 60px;
   font-weight: 700;
}

.reasons-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;

}

.reason-card {
	text-align: center;
   padding: 40px 25px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
 border-radius: 15px;
   transition: transform 0.3s ease;
}

.reason-card:hover {

  transform: translateY(-8px);}

.reason-number
	{
  font-size: 3.5em;
  font-weight     :       bold;
					color  :        #667eea;
   line-height:     1;
   margin-bottom: 15px;
}

.reason-card h3 {
    font-size: 1.3em;
    color: #2c3e50;
  margin-bottom :     15px;
				 font-weight: 600;
}

.reason-card p {
   color: #5a6c7d;
   line-height: 1.6;
}

.certifications-partnerships {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
}

.cert-content


{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.certifications h2,
.partnerships h2 {
  font-size: 2.2em;
      margin-bottom: 25px;
  font-weight: 700;
}  

.certifications p,
.partnerships p {

    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9;
   margin-bottom: 25px;
	} 

.cert-list {
  list-style: none;
   padding: 0;


}

.cert-list li {
   margin-bottom: 12px;
   padding-left: 25px;
  position: relative;
	font-weight  :500;
}

.cert-list li::before {
  content: '•';
  position: absolute;
   left:  0;
  color: #f8f9fa;
  font-size: 1.5em;


}

.thankyou-main {
  min-height: calc(100vh - 140px);
   padding  :  120px 0 50px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}


.thankyou-container {
   max-width: 1200px;
     margin  :0 auto;
       padding: 0 20px;
      display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
   	 align-items: center;
}

.thankyou-content {
    text-align: center;
}

.success-icon {
   margin-bottom: 30px;


}

.checkmark-circle {
  width: 100px; 
    height: 100px; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    border-radius: 50%; 
   display: flex; 
  align-items    :       center; 
   justify-content: center; 
  margin: 0 auto; 
  position: relative; 
  animation: scaleIn 0.5s ease-out;

}

.checkmark  {
  width: 40px;
  height: 20px;
    border: 4px solid white;
   border-top: none;
    border-right: none;
  transform: rotate(-45deg);
   animation: checkmarkDraw 0.3s ease-out 0.3s both;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 40px;
        height: 20px;
    }
}.thankyou-content h1 {
    font-size: 2.8em;
  color: #2c3e50;
	margin-bottom: 25px;
   font-weight  :    700;
}

.main-message {
  color: #5a6c7d;
  line-height: 1.7;
   font-size: 1.2em;
   margin-bottom: 40px;
}

.next-steps {
  margin-bottom: 40px;
   text-align: left;
}

.next-steps h2 {

  font-size: 1.8em;
         color  :       #2c3e50;
  text-align     :        center;
  margin-bottom: 25px;
   font-weight: 600;
}

.steps-list {

		display: flex;
	 flex-direction: column;
   gap: 25px;} 

.step-item    {
    display: flex;
					align-items: flex-start;
	gap: 20px;
  background: white;
   padding: 25px;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); 

}

.step-number {
    width :      40px;
	height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
 display: flex;
               align-items    :       center;
  justify-content: center;
   font-weight: bold;
    font-size: 1.2em;
  flex-shrink: 0;
}

.step-content h3 {
        font-size: 1.2em;
	 color: #2c3e50;
   margin-bottom: 8px;
  font-weight    :      600;
}

.step-content p {
   color: #5a6c7d;
		line-height: 1.6;
	  margin: 0;
}

.additional-info {
    background  :    white;
	padding: 30px;
   border-radius: 12px;
   margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.additional-info h2 {


     font-size: 1.5em;
       color: #2c3e50;
      margin-bottom: 15px;
       font-weight: 600;
	}

.additional-info p {
    color: #5a6c7d;
  line-height: 1.6;
	 margin-bottom: 20px;
}

.contact-highlight {
   text-align: center;
}

.phone-link {
	   border-radius: 8px;
    font-size   : 1.5em;
    display: inline-block;
   padding     :       15px 25px;
  text-decoration: none;
    font-weight: 600;
   border: 2px solid #667eea;
	color: #667eea;
    transition: all 0.3s ease;} 

.phone-link:hover {

   background: #667eea;
  color: white;
  transform: translateY(-2px);
     }

.return-actions  
  {
   display: flex;
    gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-visual img {
	width :    100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .story-content,
    .values-content,
    .approach-content,
    .cert-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 2.5em;
    }
    
    .about-subtitle {
        font-size: 1.2em;
    }
    
    .story-text h2,
    .team-expertise h2,
    .approach-methodology h2,
    .why-choose-us h2 {
        font-size: 2em;
    }
    
    .thankyou-content h1 {
        font-size: 2.2em;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-list {
        gap: 20px;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .return-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-content {
        text-align: center;
    }
    
    .next-steps {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2em;
    }
    
    .thankyou-content h1 {
        font-size: 1.8em;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        width: 30px;
        height: 15px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        margin: 0 auto;
    }
}.pol  {
  margin: 5% 15%;
}