* {
   margin: 0;
  padding: 0;
    box-sizing :      border-box;
}  

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	 background-color: #fafafa;
    color: #2c3e50;
    line-height: 1.6;

}

.header-nav {
      background-color    :       #fff;
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	    position: sticky;
	    top: 0;
	   z-index: 1000;
	  padding: 0.8rem 0;
}


.nav-content {
   max-width    :    1200px;
   margin: 0 auto;
  display: flex;
   justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-section {
   flex: 0 0 auto;
}

.nav-logo {
  display: block;
   width: auto;
  height: 48px;
}

.burger-menu-btn {
    display:    none;
    flex-direction: column;
  background: none;
  border :    none;
   cursor: pointer;
   gap: 5px;
}

.burger-menu-btn span

{
    width: 25px;
    height: 3px;
    -webkit-border-radius: 2px;
        background-color: #2c3e50;
  transition: all 0.3s ease;
   border-radius: 2px;
}

.burger-menu-btn.active span:nth-child(1)   {
  transform: rotate(45deg) translate(10px, 10px);
}



.burger-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
  list-style: none;
         gap: 2rem;
    align-items: center;
}

.nav-link {
   text-decoration: none;
      color: #2c3e50;
               font-weight: 500;
    transition: color 0.3s ease;
   position: relative;
}

.nav-link:after {
  content: '';
   position: absolute;
    bottom   :      -5px;
  left: 0;
  width: 0;
         height: 2px;
   background-color: #667eea;
  transition: width 0.3s ease;
}

.nav-link:hover:after{

	  width: 100%;


}@media (max-width: 768px) {
    .burger-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.open {
        max-height: 300px;
    }
    
    .nav-link {
        padding: 1rem 20px;
        width: 100%;
        display: block;
    }
}.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :    #fff;
    padding: 4rem 20px;
}

.hero-wrapper
	{
       max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.hero-content h1 {
   font-size: 2.8rem;
    margin-bottom: 1.2rem;
   line-height: 1.2;
   font-weight     :    700;
}

.hero-subtitle {
    font-size  :    1.1rem;
   margin-bottom: 2rem;
  opacity: 0.95;
    line-height  :1.8;
} 

.cta-primary {
  display: inline-block;
    background-color: #fff;
    color: #667eea;
    padding: 0.9rem 2.2rem;
  text-decoration: none;
    border-radius: 6px;
  font-weight: 600;
	 transition: all 0.3s ease;
   cursor: pointer;
	 border  :    none;
	font-size: 1rem;
}

.cta-primary:hover {
   background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-img {
     width: 100%;
    max-width: 480px;
   border-radius     :   12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}@media (max-width: 900px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}.services-preview {
  padding: 4rem 20px;
          background-color: #fff;
}

.services-container {
  max-width     :    1200px;
    margin: 0 auto;


}

.services-preview h2,
.coaching-methodology h2,
.testimonials-section h2,
.features-highlight h2,
.cta-consultation h2,
.faq-section h2,
.webinar-conference h2,
.contact-section h2 {
    font-size: 2.2rem;
  margin-bottom:  3rem;
  text-align :center;
               color    :  #2c3e50;
       font-weight: 700;
}


.services-grid {

    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
	    gap: 2rem;
	}

.service-card {
    background-color: #f8f9fa;
         border-radius     :   10px;
  overflow   :       hidden;
	 transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover 
 {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
	
}

.service-card h3 {
  color  :        #2c3e50;
   font-size     : 1.3rem;
	padding: 1.5rem 1.5rem 0.8rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
  color: #555;
  line-height: 1.7;
}

.coaching-methodology {
      padding: 4rem 20px;
	background-color: #f8f9fa;
	}

.methodology-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.methodology-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:       2.5rem;
}

.method-item {
    background-color: #fff;
   padding: 2rem;
   border-radius: 10px;
                    border-left: 4px solid #667eea;
    transition   :    all 0.3s ease;
}


.method-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.method-number {
    font-size: 2.5rem;
	 font-weight: 700;
   color: #667eea;
  margin-bottom: 0.5rem;
}

.method-item h3 {
	 font-size: 1.2rem;
	margin-bottom: 0.8rem;
   color: #2c3e50;
}

.method-item p {


   color: #666;
  line-height     :      1.8;
     }

.testimonials-section  
  {


       background-color: #fff;
   padding: 4rem 20px;

}

.testimonials-wrapper {
  max-width: 1200px;
               margin: 0 auto;
	
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 2rem;
    border-radius: 10px;
   border: 1px solid #e9ecef;
   transition: all 0.3s ease;
}

.testimonial-card:hover {
         border-color: #667eea;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.1); 

}

.testimonial-text {
  font-size: 0.95rem;
   color: #333;
    line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author		{
   font-weight: 600;
  color: #667eea;
  font-size: 0.9rem;


}  

.features-highlight {
   padding: 4rem 20px;
  background-color: #f8f9fa;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;


} 

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
       gap    :      2rem;
}

.feature-item  {
  border  :    1px solid #e9ecef;
               padding: 2rem;
   border-radius: 10px;
  text-align: center;
   transition  :        all 0.3s ease;
  background-color:       #fff; 
	
}

.feature-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.feature-icon {

	  margin-bottom: 1rem;
    height: 50px;
   display: flex;
    align-items: center;
   justify-content: center; 
	


}

.feature-icon img {
     width: 48px; 
   height     :48px; 
    stroke :  #667eea; 
   fill: none; 
  stroke-width: 2;
}

.feature-item h3 {
	 font-size: 1.1rem;
    margin-bottom: 0.8rem;
  color: #2c3e50;}

.feature-item p {
  color  :   #666;
   font-size: 0.9rem;
   line-height  :     1.7;
}

.cta-consultation {
   padding    :       3.5rem 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
   text-align: center;
}

.cta-wrapper {
    max-width: 800px;
         margin: 0 auto;
}

.cta-consultation h2 {
  color: #fff;
   margin-bottom: 1rem;
} 

.cta-consultation p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7; 
	
}

.cta-secondary		{
   display :       inline-block;
  background-color: #fff;
   color: #667eea;
   padding     :0.85rem 2rem;
   text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
	transition: all 0.3s ease;
    cursor: pointer;
    border:       none;
    font-size: 0.95rem;
}

.cta-secondary:hover {
    background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
} 

.faq-section {
	padding: 4rem 20px;
   background-color: #fff;
}

.faq-container {
   max-width: 800px;
      margin: 0 auto;
}

.accordion-wrapper {
  display: flex;
    flex-direction: column;
	gap: 1rem;
}

.accordion-item {
   border : 1px solid #e9ecef;
    border-radius: 8px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.accordion-header {
	width: 100%;
	 padding: 1.5rem;
  background-color: #f8f9fa;
   border: none;
		text-align: left;
   cursor: pointer;
    font-weight: 600;
     color:#2c3e50;
               font-size: 1rem;
   transition: all 0.3s ease;
  display: flex;
	justify-content: space-between;
  align-items: center;
	
}

.accordion-header:hover {
  background-color: #e9ecef;
   color: #667eea;
}

.accordion-header:after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;


}

.accordion-item.open .accordion-header {
  background-color: #667eea;
    color    :       #fff;
}

.accordion-item.open .accordion-header:after {
  content: '−';
  color: #fff;
}

.accordion-content {
   max-height :      0;
                    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fff;
}

.accordion-item.open .accordion-content {
			max-height: 300px;}



.accordion-content p{


  padding: 1.5rem;
   color: #555;
	 line-height: 1.8;

}

.webinar-conference {
  padding: 4rem 20px;
	 background-color:      #f8f9fa;
}

.webinar-wrapper {
    max-width: 1200px;
  margin    :0 auto;
}

.webinar-intro {


	text-align: center;
  font-size: 1.05rem;
    color: #555;
  margin-bottom: 3rem;
   max-width:  700px;
  margin-left: auto;
   margin-right: auto;
	}

.event-cards {
   display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem;
}

.event-card {
  background-color: #fff;
     padding :      2rem;
     border-radius: 10px;
          border: 2px solid #e9ecef;
     transition: all 0.3s ease;
}

.event-card:hover {
  border-color: #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);


}

.event-card h3 {

   font-size  :  1.2rem;
	  color: #2c3e50;
	  margin-bottom: 1rem;
	}

.event-card p {
    line-height: 1.7;
   margin-bottom: 1rem;
	color: #666;
}

.event-format {
    font-size: 0.85rem;
       color: #667eea;
    font-weight:    600;
}

.contact-section {
	padding: 4rem 20px;
	 background-color: #fff;
}

.contact-container {
   max-width: 700px;
   margin: 0 auto;
}

.contact-intro {
   text-align: center;
   font-size: 1.05rem;
   color: #555;
   margin-bottom: 2.5rem;
	
}

.contact-form {
    display: flex;
               gap: 1.5rem;
   flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction:     column;

}

.form-group input,
.form-group select,
.form-group textarea  {
   -webkit-transition: all 0.3s ease;
  padding   :       0.9rem 1rem;
   border: 2px solid #e9ecef;
   border-radius: 6px;
  font-size: 0.95rem;
   font-family:   inherit;
   transition: all 0.3s ease;
   background-color: #fff;
}

.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);}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: #aaa;
}

.form-group select {
  cursor: pointer;
  color     : #2c3e50;
}

.form-group select option {

  color: #2c3e50;
    background-color: #fff;
	}

.form-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
	 padding    : 1rem;
  border: none;
          border-radius: 6px;
  font-weight: 600;
   font-size: 1rem;
    cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.main-footer {
    background-color:        #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 20px 1.5rem;
}

.footer-content {
   max-width: 1200px;
   margin: 0 auto;
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.5rem;
   margin-bottom: 2rem;
}  

.footer-section h3 {
   color: #fff;

  font-size: 1.1rem;

    margin-bottom :    1rem;


}

.footer-logo img {
   height: 50px;
  width: auto;
    margin-bottom   :      1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section a	{
  -moz-transition: color 0.3s ease;
  color: #e0e0e0;
   text-decoration: none;
   transition:     color 0.3s ease;
}

.footer-section a:hover  
  {
  color     :     #667eea;
}

.footer-section p  {
         font-size: 0.95rem;
  line-height: 1.7;
   color: #b0b0b0;
    margin-bottom: 0.8rem;

}

.footer-bottom {

        max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
  border-top: 1px solid #333;
	 text-align   :    center;
    color: #888;
  font-size: 0.9rem;
	}

.policySection {
	 padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
   max-width     : 800px;
    margin: 0 auto;
   text-align   :       left;
}

.policyContainer h2 {
   font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom  :1.5rem;
   font-weight: 700;
}

.policyContainer h3 {
    font-size: 1.4rem;
  color  :   #2c3e50;
  margin: 2rem 0 1rem;
   font-weight: 600;
	
}

.policyContainer h4 {
    font-size: 1.2rem;
       color :   #34495e;
         margin: 1.5rem 0 0.8rem;
 font-weight: 600;
}

.policyContainer p {
    color   :   #7f8c8d;
    margin-bottom: 1.5rem;
 line-height: 1.7;
    font-size: 1.1rem;
}

.policyContainer ul {
       margin: 1rem 0 1.5rem 1.5rem;
  color: #7f8c8d;
}

.policyContainer ul li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.policyContainer a {
   color: #667eea;
  text-decoration: none;
}

.policyContainer a:hover {
  text-decoration: underline;

}

.policyContainer strong
{
    color: #2c3e50;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }

    .policyContainer h4 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
  padding: 5rem 20px;
   text-align   :  center;
   position: relative;
          overflow: hidden; 
	
}

.hero-overlay {
                    max-width: 1000px;
   margin: 0 auto;
    position: relative;
	 z-index: 2;
}

.services-hero h1    {
  font-size: 3rem;
   margin-bottom: 1rem;
    font-weight: 700;
   line-height: 1.2;
}

.services-hero p 
 {
  font-size: 1.2rem;
    opacity :    0.95;
  line-height     : 1.8;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero p {
        font-size: 1rem;
    }
}.services-main {
    background-color: #fff;
    padding :4rem 20px; 

}

.services-main-container {
  max-width: 1200px;
    margin: 0 auto;}

.services-intro {
   text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
   font-size: 2.2rem;
    margin-bottom: 1rem;
   color: #2c3e50;
}

.services-intro p {
   font-size:        1.05rem;
    color    : #666;
    max-width: 700px;
   margin: 0 auto;
}

.service-detailed {
  display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-row  {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
   padding: 2rem;
    border-radius   :    12px;
    transition: all 0.3s ease;
}

.service-row-odd {
  background-color: #f8f9fa;
}

.service-row-even {
   background-color: #fff;
    border: 1px solid #e9ecef;
} 

.service-row:hover   {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.1); 

}

.service-visual	{
    position    :        relative;
}

.service-detail-img {
    width: 100%;
   border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-row:hover .service-detail-img {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-info h3 {
	 font-size:  1.8rem;
  color   :#2c3e50;
               margin-bottom: 1rem;
}

.service-info p {
	color: #555;

	    line-height: 1.8;

	   margin-bottom: 1.5rem;

	     font-size: 0.95rem;
}

.service-features {
  list-style: none;
   margin :       1.5rem 0;
   padding: 0;
}


.service-features li {
    padding     :0.5rem 0 0.5rem 1.5rem;
  color: #555;
    position: relative;
  font-size: 0.9rem;
    line-height: 1.6;
}

.service-features li:before {
  content: '✓';
  position: absolute;
   left: 0;
    color    :   #667eea;
     font-weight: bold; 

}

.service-pricing {
   display: flex;
               gap: 1rem;
  margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.price-label {


  background-color: rgba(102, 126, 234, 0.1);
   color: #667eea;
	padding: 0.5rem 1rem;
	border-radius: 6px;
  font-size: 0.85rem;
    font-weight: 600;
	}

.price-badge {
  background-color: rgba(118, 75, 162, 0.1);
  color: #764ba2;
    padding: 0.5rem 1rem;
   border-radius: 6px;
    font-size: 0.85rem;
  font-weight    :   600; 

}@media (max-width: 900px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-info h3 {
        font-size: 1.5rem;
    }
}.workshops-events {
  padding: 4rem 20px;
    background-color: #f8f9fa;

}  

.workshops-container {
  max-width: 1200px;
                    margin: 0 auto;
}  

.workshops-container h2 {
    font-size     :     2.2rem; 
	  text-align: center; 
	   margin-bottom: 1rem; 
	    color: #2c3e50;
}

.workshops-intro {
    text-align: center;
      font-size: 1.05rem;
    color  :      #666;
	max-width: 700px;
    margin: 0 auto 3rem;
}

.workshops-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;


}

.workshop-card {
  background-color: #fff;
    border-radius:      10px;
    padding: 2rem;
  border   :    2px solid #e9ecef;
   transition: all 0.3s ease;
 display: flex;
	flex-direction: column;
}

.workshop-card:hover {

   border-color    :     #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px); 
	
	}

.workshop-header {
          display: flex;
   justify-content: space-between;
 align-items: flex-start;
   gap: 1rem;
    margin-bottom:      1rem;
}

.workshop-header h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 0;
}

.workshop-type {
     background-color: rgba(102, 126, 234, 0.15);
                  color: #667eea;
         padding: 0.3rem 0.8rem;
     border-radius :     4px;
     font-size: 0.75rem;
       font-weight: 600;
     white-space   :    nowrap;


}

.workshop-description {
    color: #666;
	font-size: 0.9rem;
	line-height: 1.7;
     margin-bottom  :  1.5rem;
  flex-grow: 1;
}

.workshop-details {
	display: flex; 
	flex-direction :  column; 
               gap: 0.8rem; 
         padding-top: 1rem; 
        border-top: 1px solid #e9ecef;
}

.detail-item {
      display   :  flex;
    justify-content: space-between;
  align-items: center;
}

.detail-label{
	 color: #888;
    font-size     : 0.85rem;
    font-weight: 600;
}

.detail-value {
   color: #2c3e50;
	font-size: 0.85rem;
}

.pricing-comparison {
   padding     :    4rem 20px;
  background-color   :      #fff;}

.pricing-container {
	max-width: 1200px;
  margin:      0 auto;
}

.pricing-container h2 {
   font-size: 2.2rem; 
	  text-align: center; 
		margin-bottom: 3rem; 
	   color    :        #2c3e50;
}

.pricing-table {

   border-radius:  10px;
     overflow: hidden;
  border: 1px solid #e9ecef;
                    background-color: #fff;
	}

.table-row {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
   border-bottom: 1px solid #e9ecef;
}

.table-row:last-child {
    border-bottom: none;
	
}

.table-header {
    background-color: #f8f9fa;
}

.table-cell {
  padding: 1.5rem;
    border-right: 1px solid #e9ecef;
   color: #2c3e50;
  font-size: 0.9rem;
}

.table-cell:last-child {
        border-right: none;
}

.table-header .table-cell {
				 font-weight: 600;
   color: #2c3e50;
}

.table-icon {
    width: 24px;
  height: 24px;
   stroke: #667eea;
  fill: none;
   stroke-width: 2;
}@media (max-width: 900px) {
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-cell {
        border-right: none;
    }
}.why-choose-instinct    {
   padding:     4rem 20px;
   background-color: #f8f9fa;
}

.why-container {
        max-width: 1200px;
               margin: 0 auto;
}

.why-container h2 {
     text-align: center;

	   color: #2c3e50;

	   margin-bottom: 3rem;

	  font-size: 2.2rem;
}

.why-grid

{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; 
	
}  

.why-card {

	  background-color: #fff;
        padding    :     2rem;
   	border-radius: 10px;
       text-align: center;
      border: 1px solid #e9ecef;
       transition: all 0.3s ease;

}

.why-card:hover {

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);


}

.why-icon {
 margin-bottom: 1.5rem;
    height:       50px;
   display: flex;
    align-items: center;
  justify-content: center;
}

.why-icon img {
    width: 48px;
        height: 48px;
               stroke    :   #667eea;
    fill: none;
   stroke-width: 2;
}

.why-card h3 {
	font-size: 1.1rem;
   color: #2c3e50;
   margin-bottom: 0.8rem;
}

.why-card p {
   font-size: 0.9rem;
    line-height: 1.7;
  color: #666;
}

.additional-info {
    padding: 4rem 20px;
    background-color: #fff;
}

.additional-container {
  max-width: 1000px;
  margin: 0 auto;
}  

.additional-container h2 {
    font-size: 2.2rem;
	 text-align :  center;
   margin-bottom: 3rem;
	color :     #2c3e50;


}

.cta-services {
	         padding:3.5rem 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color   :    #fff;
          text-align: center;


}

.cta-services-wrapper {

   max-width: 800px;
	 margin    :    0 auto;


}

.cta-services h2 {
	    color: #fff;
   font-size: 2rem;
    margin-bottom: 1rem;


}

.cta-services p     {


    font-size: 1.05rem;
  margin-bottom: 2rem;
    line-height :    1.7;

}

.thank-you-section {
		padding: 4rem 20px;
    background-color: #fff;
  min-height: calc(100vh - 300px);
    display     :flex;
  align-items: center;
    justify-content     :     center;}

.thank-you-container {
  max-width: 800px;
  margin: 0 auto;
	text-align: center;
}

.thank-you-content {
	background-color: #f8f9fa;
  padding: 3rem;
                    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.success-icon {
    margin-bottom: 2rem;
   height: 80px;
  display: flex;
	align-items: center;
		 justify-content: center;
}  

.success-icon img {
   width: 80px;
   height : 80px;
   stroke: #2ecc71;
   fill     :    none;
    stroke-width  :  1.5; 
	
}

.thank-you-content h1 {


    font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 1rem;
	}

.thank-you-subtitle {
       font-size: 1.1rem;
  color: #666;
    margin-bottom: 2rem;
   line-height: 1.7;
}

.confirmation-details
{
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin   : 2rem 0;
   text-align  :        left;
}

.detail-block h3 {
    font-size: 1.1rem;

    color: #2c3e50;

	margin-bottom: 1rem;
}

.steps-list,
.tips-list {
  list-style: none;
    padding: 0;
  margin: 0;
}

.steps-list li,
.tips-list li {
         padding: 0.6rem 0 0.6rem 1.5rem;
         color: #555;
   position: relative;
    font-size: 0.9rem;
  line-height: 1.6;
}

.steps-list li:before {
  content: '→';
    position: absolute;
	left :   0;
  color: #667eea;
  font-weight: bold;
}

.tips-list li:before
	{
  content: '✓';
  position: absolute;
    left   : 0;
	color    :     #667eea;
    font-weight: bold;
}

.next-actions
	{
  display: flex;
          gap: 1rem;
   justify-content: center;
			margin-top: 2rem;


}

.action-link {
    padding: 0.9rem 2rem;
   text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
   display: inline-block;
} 

.primary-action {
  background-color: #667eea;
  color: #fff;
}

.primary-action:hover {
   background-color   :  #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.secondary-action {
   background-color: #fff;
   color    :      #667eea;
    border: 2px solid #667eea;
}

.secondary-action:hover

{
    color: #fff;
  transform: translateY(-2px);
       background-color: #667eea;
}

.faq-thankyou {
    padding: 4rem 20px;
   background-color    :  #f8f9fa;
}

.faq-container {
  max-width: 800px;
  margin     :        0 auto;
}

.faq-container h2 {
               font-size: 2rem;
                    text-align: center;
    margin-bottom:     2rem;
    color:     #2c3e50;
}

.next-programs {
    padding: 4rem 20px;
  background-color: #fff;
}

.programs-container    {
    max-width:      1200px;
    margin: 0 auto;
}

.programs-container h2 {
	font-size: 2.2rem;
  text-align: center;
   margin-bottom: 1rem;
        color:    #2c3e50;
}

.programs-intro {
	font-size  :      1rem;
  margin-bottom :      2rem;
	text-align: center;
   color: #666;
}

.programs-grid {


  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

     gap: 2rem;
	
	}

.program-card-thankyou {

  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	 padding: 2rem;
   border-radius: 10px;
	border: 2px solid #e9ecef;
   transition: all 0.3s ease;
  text-align: center;


     }

.program-card-thankyou:hover {
    border-color: #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);
}

.program-card-thankyou h3 {
       font-size:        1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.program-card-thankyou p {
  color: #666;
     font-size:0.9rem;
     line-height: 1.7;
     margin-bottom: 1.5rem;
}

.card-link 
 {


  transition :     all 0.3s ease;
  padding    :     0.6rem 1.5rem;
  text-decoration:      none;
    display  :      inline-block;
  border-radius: 6px;
   border: 2px solid #667eea;
 font-weight: 600;
   color: #667eea;
}

.card-link:hover {


   background-color: #667eea;
  color: #fff;
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .confirmation-details {
        grid-template-columns: 1fr;
    }
    
    .next-actions {
        flex-direction: column;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 1.8rem;
    }
}