* {


    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: #ffffff;
}

.content-container {
   max-width: 1200px;
    margin :       0 auto;
  padding: 0 20px;
	
}

.main-navigation {
 background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
   top: 0;
      z-index:   1000; 

}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
        padding: 15px 20px;
   display: flex;
   justify-content: space-between;
  align-items  :       center;
}

.brand-section .brand-image  {
   height: 45px;
	width: auto;
	
}

.menu-toggle {
    display: none;
	 background: none;
   border: none;
   cursor  :      pointer;
    flex-direction: column;
  gap: 5px;

}

.toggle-line {

  width: 28px;
     height   :3px;
   background: #2c3e50;
    transition: 0.3s;
     }

.nav-links {
  display: flex;
   gap: 30px;

}

.link-item {
  text-decoration: none;
    color: #2c3e50;
   font-weight: 500;
  transition: color 0.3s;
}

.link-item:hover, .link-item.active {
    color :      #3498db;
}

.hero-area    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 0;
    color: #fff;
}

.hero-area .content-container

{
      display: flex;
    align-items    :        center;
   gap: 50px;


}

.hero-text {
  flex: 1;

}

.hero-text h1 {
     font-size: 2.8em;
   margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle-text {
  font-size: 1.2em;
    margin-bottom: 30px;
  opacity: 0.95;
}

.action-buttons {
   display: flex;
    gap: 15px;
}

.primary-btn, .secondary-btn {
   padding: 14px 30px;
   text-decoration     :       none;
  border-radius: 5px;
	 font-weight: 600;
  transition: all 0.3s;
   display: inline-block;
}

.primary-btn {

	  background: #fff;
	color    : #667eea;}

.primary-btn:hover		{
	  transform: translateY(-2px);

	  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.secondary-btn {
   background  : transparent;
   color: #fff;
          border: 2px solid #fff;
}

.secondary-btn:hover {
  background: #fff;
    color     :    #667eea;

}

.hero-visual {


  flex: 1;
     }

.hero-visual img {
    width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	
}

.intro-section {
	  background: #f8f9fa;
    padding: 70px 0;

}


.intro-content h2 {
	        font-size: 2.2em;
    margin-bottom     :    25px;
    color: #2c3e50; 


}

.intro-content p  {

	  font-size: 1.1em;
    margin-bottom: 20px;
  color: #555;
}

.services-overview {
    padding   :        70px 0;
}

.section-heading {
   text-align: center;
		font-size: 2.3em;
   margin-bottom: 50px;
    color  : #2c3e50;
}

.services-grid {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 30px;
}

.service-card {
  background     :       #fff;

    padding: 35px;

       border-radius: 8px;

  box-shadow: 0 3px 15px rgba(0,0,0,0.08);

    transition:transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-icon {
	 margin-bottom: 20px;
}

.card-icon img {
   width: 50px;
    height: 50px;


}

.card-icon svg {
  stroke: #667eea;
    fill: none;
   stroke-width: 2;
   stroke-linecap:  round;
         stroke-linejoin: round;
}

.service-card h3 {
   font-size: 1.4em;
    margin-bottom: 15px;
  color: #2c3e50;
} 

.service-card p {

	       color: #666;
        line-height:1.7;
     }

.feature-showcase {
  padding: 70px 0;
                    background: #f8f9fa;
}

.showcase-item {
  display: flex;
    gap: 50px;
   align-items  :center;
  margin-bottom: 60px;
}

.showcase-item:last-child {
   	 margin-bottom: 0;
}

.showcase-item.reverse {
  flex-direction: row-reverse;


}

.showcase-image {
  -webkit-flex: 1;
  flex: 1;
}

.showcase-image img {
  width: 100%;
    height   :   auto;
	border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.showcase-text	{
               flex     :        1;
}

.showcase-text h2 {
  font-size: 2em;
       margin-bottom: 20px;
         color: #2c3e50;
}

.showcase-text p  
  {
  font-size: 1.05em;
   margin-bottom: 20px;
	color: #555;
}

.feature-list {
			list-style: none;
}

.feature-list li {
    padding: 10px 0 10px 30px;

		position: relative;

		color: #555;
}

.feature-list li:before {
  content: "✓";
    position: absolute;
   left: 0;
  color: #667eea;
  font-weight     :   bold;
    font-size: 1.2em;}

.process-section {
  padding: 70px 0; 
	
}

.process-steps {
   display:  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    :       30px;
    margin-top: 40px;
}

.step-item {
  text-align   :center;
	          padding:      30px 20px;
}

.step-number {
  display :inline-block;
  width: 70px;
   height: 70px;
   line-height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color:       #fff;
    border-radius    :      50%;
  font-size   :    1.5em;
    font-weight: bold;
   margin-bottom: 20px;
}

.step-item h3 {
  font-size: 1.3em;
    margin-bottom: 15px;
  color: #2c3e50;
	
}

.step-item p

{
    color: #666;


}

.cta-section {
	 padding: 80px 0; 
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); 
  color: #fff; 
   text-align: center;
}

.cta-content h2 {
   font-size: 2.3em;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2em;
   margin-bottom: 30px;
  max-width: 800px;
          margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
   padding     : 16px 40px;
    background: #fff;
  color   :#667eea;
	 text-decoration: none;
                    border-radius: 5px;
   font-weight :600;
	font-size: 1.1em;
    transition: all 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.benefits-section {
   padding: 70px 0;
    background: #f8f9fa;
}

.benefits-grid


{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
    margin-top: 40px;}

.benefit-item {
    text-align: center;
  padding: 30px 20px;
   background     :      #fff;
   border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}



.benefit-icon
	{
   margin-bottom     :       20px;
}

.benefit-icon img {
   width: 55px;
  height     :       55px;
}

.benefit-icon svg {
  stroke: #3498db;
      fill    :  none;
       stroke-width: 2;
       stroke-linecap: round;
       stroke-linejoin: round;
}  

.benefit-item h3 {
    font-size: 1.3em;
   margin-bottom: 15px;
  color: #2c3e50;
}  

.benefit-item p {

	   color: #666;
    line-height: 1.6;
     }

.programs-section {
               padding     :   70px 0;
}

.programs-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
   margin-top: 40px;
	}

.program-card  {


  background: #fff;
	   border-radius: 8px;
	  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
		 overflow: hidden;
	  transition: transform 0.3s;

}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card.featured {
    border: 3px solid #667eea;
}

.program-header  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
    padding: 30px;
    text-align: center;
}

.program-header h3 {
  font-size: 1.6em;
   margin-bottom: 10px;
}

.program-type {
   font-size: 0.95em;
   opacity: 0.9;
}  

.program-body {
	padding: 30px;
}

.program-body p {
    margin-bottom: 20px;
 color: #555;
}

.program-features {
   list-style: none;
}

.program-features li {
   color: #555;
         position: relative;
  padding   :   8px 0 8px 25px;
}

.program-features li:before {
  content: "•";
  position: absolute;
          left:    0;
   color: #667eea;
        font-size: 1.5em;
  line-height: 1;
}

.program-footer {
   padding: 0 30px 30px;

}

.program-btn

{
    display: block;
    text-align: center;
                    padding:    12px;
  background :  #667eea;
   color:      #fff;
			text-decoration: none;
   border-radius: 5px;
  font-weight: 600;
    transition: background 0.3s;
}


.program-btn:hover{
      background: #764ba2;
     }

.contact-section {
   padding: 70px 0;
    background: #f8f9fa;
}



.contact-wrapper {
   display: grid;
  grid-template-columns   :  1fr 1fr;
   gap: 50px;
}  

.contact-info h2
	{
    font-size: 2.2em;
    margin-bottom  :  20px;
     color: #2c3e50;
}

.contact-info p     {
		font-size: 1.05em;
	margin-bottom: 30px;
    color: #555;
}

.info-items {
   display: flex;
   flex-direction: column;
                    gap: 25px;
}

.info-item {
   display: flex;
  gap: 20px;
	
}

.info-icon img  
  {
    width: 40px;
    height: 40px;
}

.info-icon svg {
   stroke: #667eea;
   fill: none;
  stroke-width: 2;
  stroke-linecap: round;
   stroke-linejoin: round;


}

.info-text h4		{


    font-size: 1.1em;
   margin-bottom: 8px;
  color: #2c3e50;

}

.info-text p {
   color: #666;
   margin: 0; 

}

.contact-form


{
	    background: #fff;
    padding: 40px;
   border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.form-group		{
	  margin-bottom: 20px;
	}

.form-group label {
    display: block;
	margin-bottom: 8px;
   font-weight: 600;
	color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 12px;
  border: 1px solid #ddd;
         border-radius: 5px;
    font-size     :       1em;
  font-family: inherit;
   transition: border-color 0.3s;
} 

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
       outline: none;
       border-color: #667eea;
}

.submit-btn {
    width: 100%;

    padding: 14px;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	 color   :       #fff;

  border: none;

   border-radius    : 5px;

  font-size: 1.1em;

   font-weight: 600;

       cursor: pointer;

    transition : all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4); 
	
}



.site-footer {
		background: #2c3e50;
   color: #ecf0f1;
    padding: 50px 0 20px;


}

.footer-content {
  display: grid;
     grid-template-columns     :       2fr 1fr 1fr 1fr;
  gap: 40px;
	margin-bottom: 40px; 

}

.footer-logo {
    height: 40px;
   width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: #bdc3c7;
    line-height :    1.7;
}

.footer-column h4
{
   font-size :      1.2em;
   margin-bottom :    20px;
   color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li		{
    margin-bottom: 12px;
}

.footer-links a {
	  color    :      #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
	}

.footer-links a:hover {
    color: #3498db;
}

.footer-contact li
{
  color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color:    #95a5a6;
}@media (max-width: 992px) {
    .hero-area .content-container {
        flex-direction: column;
        text-align: center;
    }

    .action-buttons {
        justify-content: center;
    }

    .showcase-item,
    .showcase-item.reverse {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2em;
    }

    .subtitle-text {
        font-size: 1.05em;
    }

    .section-heading {
        font-size: 1.8em;
    }

    .services-grid,
    .benefits-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6em;
    }

    .contact-form {
        padding: 25px;
    }
}.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 p {
   color   :     #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.7;
   font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.page-hero {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	padding: 100px 0 60px;
   color: #fff;
  text-align  :  center;
}

.page-hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.2em;
                    max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.services-detailed   {
   padding: 80px 0;
}

.service-detail-block {
	 gap: 60px;
      align-items: flex-start;
  margin-bottom: 100px;
   display: flex; 
	
}

.service-detail-block:last-child {
  margin-bottom    :  0;
}

.service-detail-block.reverse {
               flex-direction : row-reverse; 
	
}

.detail-image {
    flex: 1;
    top   :    100px;
  position:   sticky;
}

.detail-image img {

   width: 100%;
    height: auto;
	border-radius:     10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.detail-content  
  {
               flex: 1;
}

.service-tag {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
  padding: 8px 20px;
   border-radius    :      20px;
    font-size: 0.9em;
   font-weight: 600;
                    margin-bottom: 20px;
}

.detail-content h2 {
       font-size: 2.2em; 
   margin-bottom: 20px; 
   color: #2c3e50;


}

.detail-content > p {
    font-size: 1.1em;
   line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.feature-grid   {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 25px;
     margin: 35px 0;
}

.feature-box {
   background: #f8f9fa;
  padding: 25px;
   border-radius:8px;
}

.feature-icon {
  margin-bottom: 15px;
}

.feature-icon img {
  width: 40px;
	height: 40px;
}

.feature-icon svg {
    stroke: #667eea;
          fill: none;
          stroke-width:     2;
	 stroke-linecap: round;
	stroke-linejoin    :   round;
}

.feature-box h4 
 {
	margin-bottom: 10px;
       color: #2c3e50;
	font-size :  1.1em;
}

.feature-box p {
   font-size  :     0.95em;
	  color:    #666;
		 line-height: 1.6;
}

.topics-covered {
   margin-top: 40px;
    background: #fff;
	 padding: 30px;
	 border-left: 4px solid #667eea;
}

.topics-covered h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
	color: #2c3e50;
}

.topics-list {
  list-style: none;
}

.topics-list li {
	padding: 12px 0 12px 30px;
   position: relative;
    color  :     #555;
  font-size: 1.05em;


}

.topics-list li:before {
  content: "→";

  position: absolute;

	 left     :        0;

    color: #667eea;

	font-weight: bold;
}

.workshop-types {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 20px;
   margin: 30px 0;
}

.workshop-card {
  padding: 25px;
   background: #fff;
    transition: all 0.3s;
  border-radius: 8px;
    border: 2px solid #e8e8e8;
}

.workshop-card:hover {
   border-color    :   #667eea;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.workshop-card h4 {
  font-size: 1.2em;
  margin-bottom: 12px;
    color: #2c3e50;

}

.workshop-card p {
         color: #666;
   margin-bottom: 15px;
   line-height: 1.6;
}  

.workshop-duration {
   display: inline-block;

	    background: #f0f0f0;

	  padding: 5px 12px;

	    border-radius: 4px;

	   font-size: 0.85em;

	 color: #666;

	   font-weight: 600;
}

.workshop-benefits {
  margin-top     :  35px; 

}

.workshop-benefits h3 {
   font-size: 1.5em;

  margin-bottom   :      20px;

    color    :        #2c3e50;
}

.benefits-columns   {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
          gap: 20px;
}

.benefit-col p {
   padding: 10px 0 10px 25px;
    position: relative;
    color: #555;
}

.benefit-col p:before {


  content: "✓";
   position: absolute;
    left: 0;
  color: #667eea;
   font-weight: bold;
  font-size: 1.1em;

}

.consulting-services {
   margin: 30px 0;
}

.consulting-item {
   display: flex;
      gap: 25px;
   align-items: flex-start;
  margin-bottom: 30px;
          padding-bottom: 30px;
   border-bottom: 1px solid #e8e8e8;
}

.consulting-item:last-child {

         margin-bottom: 0;
	border-bottom: none;
    padding-bottom: 0;


}

.consulting-number    {
    flex-shrink: 0;
    width:   60px;
    height     :   60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
		 border-radius: 50%;
   display: flex;
    align-items: center;
    justify-content: center;
  font-size: 1.4em;
	font-weight: bold;


}

.consulting-info h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
  color: #2c3e50;
}

.consulting-info p {


    color: #666;
    line-height: 1.7;

}

.adaptation-phases {
  gap: 20px;

	  grid-template-columns: repeat(3, 1fr);

	   margin: 30px 0;

	                    display: grid;
}

.phase-card


{
  background: #f8f9fa;
    padding: 25px;
   border-radius: 8px;
    text-align: center;
}

.phase-header
{
	margin-bottom    : 15px;
}


.phase-header img {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
}

.phase-header svg {
   stroke: #667eea;
   fill: none;
        stroke-width: 2;
    stroke-linecap  :   round;
   stroke-linejoin: round;


}

.phase-header h4 {
  font-size: 1.2em;
     color: #2c3e50;
}

.phase-card p {
    color: #666;
  line-height: 1.6;
}

.program-includes {
  margin-top: 35px;
}

.program-includes h3 {
   font-size: 1.5em;
    margin-bottom: 25px;
  color     :     #2c3e50;
}

.includes-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap :     15px;
}  

.include-item {
	display: flex;
       align-items: center;
        gap: 12px;
}

.include-item img {
  width: 24px;
   height: 24px;
    flex-shrink: 0;
}



.include-item svg  {
	 stroke: #27ae60;
   fill: none;
   stroke-width: 2;
   stroke-linecap: round;
    stroke-linejoin  :   round;
}

.include-item span {
  color :#555;
  font-size: 1.05em;
}

.mindset-areas {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  margin: 30px 0;
}

.mindset-card {
   background  :     #fff;
          border: 2px solid #e8e8e8;
   padding: 25px;
   border-radius: 8px;
}

.mindset-card h4 {
               font-size: 1.2em;
    margin-bottom: 12px;
  color   :    #2c3e50;
}  

.mindset-card p  {
   color  :   #666;
    line-height: 1.6; 
	
}

.pricing-approach {
 padding: 70px 0;
    background   :#f8f9fa;
}

.approach-intro {
  text-align:        center; 
   max-width: 800px; 
  margin: 0 auto 50px; 
  font-size: 1.1em; 
    color: #555; 
  line-height: 1.8;


}

.approach-steps{
	display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.approach-step {
   text-align: center;
}

.step-icon {
  width: 80px;
   height     :     80px;
   margin: 0 auto 20px;
         background: #fff;
   border-radius: 50%;
    display: flex;
  align-items: center;
   justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-icon img {
    width :   40px;
   height: 40px;
}

.step-icon svg

{
  stroke: #667eea;
    fill: none;
   stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-step h3	{
   margin-bottom  :        12px;
   font-size    :  1.2em;
   color: #2c3e50;
}

.approach-step p {
    color: #666;
        line-height: 1.6;
}

.faq-section {


   padding: 70px 0;
     }

.faq-container 
 {
  max-width: 900px;
      margin: 0 auto;
}

.faq-item {
	background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden; 
	
}

.faq-question {
    display   :        flex;
    justify-content: space-between;
   align-items: center;
  padding    :       25px 30px;
    cursor: pointer;
   transition: background 0.3s;


}

.faq-question:hover    {
   background: #f8f9fa;
}

.faq-question h3 {
         font-size: 1.2em;
			color   :  #2c3e50;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.8em;
    color: #667eea;
   font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle  
  {
  transform: rotate(45deg);
}

.faq-answer {
   max-height: 0;
  overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {

		max-height: 500px;}

.faq-answer p {
   padding: 0 30px 25px;
   line-height: 1.8;
     color :    #666;
}

.cta-services {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
   color: #fff;
	}

.cta-services h2    {
   font-size:        2.5em;
   margin-bottom: 20px;
}

.cta-services p {
   font-size: 1.2em;
  margin-bottom: 35px;
    max-width: 700px;
		margin-left     :auto;
    margin-right   :    auto;
}

.cta-btn-large {
               display    :   inline-block;
    padding: 18px 45px;
   background: #fff;
    color     : #667eea;
   text-decoration: none;
	 border-radius:        5px;
   font-weight    :      600;
   font-size: 1.1em;
  transition: all 0.3s;
}

.cta-btn-large:hover  {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.thankyou-section {
  padding: 100px 0;
  min-height: 70vh;
	
}

.thankyou-content 
 {
  max-width: 900px;
          margin: 0 auto;
   text-align  :  center;
}

.success-icon {
   width: 100px;
   margin  :     0 auto 30px;
	height: 100px;
}

.success-icon img
{
	    width     :  100%;
    height:      100%;
     }

.success-icon svg {
    stroke-linecap: round;
    stroke-width: 2;
  stroke-linejoin: round;
  fill: none;
   stroke: #27ae60;
}

.thankyou-content h1 {
   font-size: 2.8em;
  color: #2c3e50;
      margin-bottom: 20px;
}

.thankyou-message {
   font-size: 1.3em;
  color     :#555;
    margin-bottom: 50px;

}

.next-steps {
    background: #f8f9fa;
   padding: 50px 40px;
    border-radius: 10px;
 margin-bottom: 50px;
}

.next-steps h2 {
  font-size   :   2em;
     margin-bottom: 40px;
                       color: #2c3e50;
}

.steps-grid		{
               display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 30px;
 text-align: left;
}

.next-step     {
   -moz-border-radius: 8px;
    background:    #fff;
  padding :      30px;
	border-radius: 8px;
}

.step-num {
   display:        inline-block;
    width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: #fff;
    border-radius: 50%;
  line-height: 50px;
  text-align: center;
   font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 20px;


}

.next-step h3 {
  font-size: 1.3em;
    margin-bottom: 12px;
    color: #2c3e50;
}


.next-step p {
      color: #666;
     line-height: 1.7;
}

.additional-resources {
    margin-bottom: 50px;
}

.additional-resources h2 {
     font-size     :        2em;
         margin-bottom: 20px;
    color: #2c3e50;
}

.additional-resources > p

{


	 font-size: 1.1em;
  color :    #555;
   margin-bottom: 30px;
   max-width: 700px;
	margin-left: auto;
    margin-right: auto;
     }

.resource-links {
   display: flex;
  gap: 20px;
	justify-content     :center;
  flex-wrap: wrap;
}

.resource-btn {
   	 display: flex;
   align-items: center;
    gap: 15px;
 padding: 18px 30px;
    background: #fff;
    border: 2px solid #667eea;
          color: #2c3e50;
  text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;

}

.resource-btn:hover {
    background    :    #667eea;
   color: #fff;
  transform: translateY(-2px);


}


.resource-btn img {
  height: 24px;
  width: 24px;
}  

.resource-btn svg {
   stroke-linejoin    : round;
   stroke-linecap: round;
   stroke-width  : 2;
  fill: none;
 stroke: currentColor;
}

.contact-reminder {
    padding     :    30px;
    gap    :     25px;
               border-radius: 8px;
   margin: 0 auto;
 display: flex;
   align-items: flex-start;
    max-width: 600px;
  text-align: left;
   background: #fff3cd;
}

.reminder-icon img {
    width: 50px;
   height    : 50px;
}

.reminder-icon svg {
    stroke: #f39c12; 
		fill: none; 
	   stroke-width: 2; 
	    stroke-linecap: round; 
	      stroke-linejoin  :  round;
}

.reminder-text h3 {
	    font-size: 1.3em;
   margin-bottom: 10px;
                    color: #2c3e50;


}

.reminder-text p {
   margin-bottom: 10px;
  color: #666;}

.phone-link {
	display: inline-block;
   color :   #667eea;
    font-size: 1.2em;
	font-weight: 600;
   text-decoration: none;
}

.phone-link:hover{

	  text-decoration: underline;
	}@media (max-width: 992px) {
    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .detail-image {
        position: static;
    }

    .feature-grid,
    .workshop-types,
    .benefits-columns,
    .adaptation-phases,
    .includes-grid,
    .mindset-areas {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2em;
    }

    .hero-subtext {
        font-size: 1.05em;
    }

    .detail-content h2 {
        font-size: 1.8em;
    }

    .consulting-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 2em;
    }

    .thankyou-message {
        font-size: 1.1em;
    }

    .next-steps {
        padding: 30px 20px;
    }

    .resource-links {
        flex-direction: column;
    }

    .contact-reminder {
        flex-direction: column;
        text-align: center;
    }
}