* {
    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: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

	       min-height   :  100vh;
}

.primary-navigation {
   position :    fixed;
    top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
          z-index: 1000;
	transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.primary-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	
}

.nav-wrapper {

	         display     :        flex;
  justify-content: space-between;
      align-items: center;
   max-width: 1200px;
               margin:      0 auto;
    padding: 1rem 2rem;
}

.brand-logo img {
    height: 40px;
  width: auto;
}

.nav-links {
       display: flex; 
  list-style: none; 
  gap:2rem;}

.nav-links a {


    text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
	position    :    relative;
	}

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after {
  content: '';
    position: absolute;
  bottom : -5px;
  left: 0;
  width: 0;
	height: 2px;
  background: linear-gradient(90deg, #3498db, #2980b9);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
	 width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
    cursor: pointer;
  gap    :    4px;
}

.burger-menu span {
  background: #2c3e50;
   transition: all 0.3s ease;
    width: 25px;
    height: 3px;
    transform-origin: center;
} 

.burger-menu.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:last-child     {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-banner {
    padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top   :0;
}

.hero-content {
  max-width: 1200px;
  margin :  0 auto;
	 display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
	align-items: center;
}

.hero-content h1		{
       line-height: 1.2;
    font-size: 3.2rem;
  margin-bottom: 1.5rem;
    font-weight: 700;
     }

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
    opacity: 0.9;
                    line-height: 1.5;
}

.hero-actions  {
    display: flex;
  gap: 1.5rem;
  flex-wrap    :      wrap;


}

.primary-btn, .secondary-btn {
  padding: 14px 28px;
   text-decoration: none;
  border-radius: 8px;
	font-weight: 600;
  transition: all 0.3s ease;
 display: inline-block;
               text-align: center;

}  

.primary-btn {
  background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.primary-btn:hover
{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.secondary-btn {
   background: transparent;
   color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.secondary-btn:hover {

  background: rgba(255, 255, 255, 0.1);
   border-color: white;
	}

.content-right img {


    width: 100%;
		 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	}

.about-intro     {
    padding: 80px 2rem;
    background: white;
}

.container-fluid {
               max-width: 1200px;
    margin: 0 auto;
}

.intro-grid {
		display :     grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
	}

.intro-text h2 {
  font-size: 2.5rem;
    margin-bottom: 2rem;
   color: #2c3e50;
  font-weight: 700;
}

.intro-text p {
         font-size: 1.1rem;
   margin-bottom: 1.5rem;
  line-height: 1.7;
    color: #555;
}

.intro-visual img {
     width   :100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	}

.service-offerings {
   padding: 80px 2rem;

	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

}

.services-container {
    max-width: 1200px;
   margin: 0 auto;
}

.services-container h2 {
                    text-align: center;
   font-size: 2.8rem;
    margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
}

.services-layout  
  {
   display: flex;
    flex-direction: column;
    gap     :   4rem;
}

.service-item {
	   display: grid;
  grid-template-columns :       1fr 1fr;
  gap:     3rem;
  align-items: center;
    background: white;
   padding: 3rem;
    border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;

}

.service-item:hover {
  transform: translateY(-5px);
	
}

.service-item:nth-child(even) .service-details


{


   order: 2;


}

.service-item:nth-child(even) .service-visual {
   order: 1;
}

.service-details h3 {
   font-size: 1.8rem;
    margin-bottom: 1.5rem;
   color  :        #2c3e50;
  font-weight: 600;
}

.service-details p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
   line-height: 1.6;
    color: #555;
}



.service-benefits {
	     list-style: none;
   padding: 0;
}

.service-benefits li {
  padding: 0.5rem 0;
   position: relative;
    padding-left: 1.5rem;
        color: #666;
}

.service-benefits li::before {

  content: '→';
  position    :     absolute;
		left :   0;
  color: #3498db;
  font-weight: bold;

}

.service-visual img {
     width    :      100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cta-section {
   	 padding: 80px 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;


	}

.cta-content
{
  max-width: 1000px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
   align-items: center;
}

.cta-text h2 {
  font-size :     2.5rem;
         margin-bottom: 1.5rem;
        font-weight: 700;
}

.cta-text p {
    font-size: 1.1rem;
  margin-bottom: 1.5rem;
 line-height: 1.6;
   opacity: 0.9;
}

.cta-emphasis


{
       font-weight: 600;
  color: #f39c12;
}

.cta-button {
   display: inline-block;
    padding  :       16px 32px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
        text-decoration  :     none;
    border-radius: 8px;
	font-weight: 600;
    font-size: 1.1rem;
   transition :        all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        text-align: center;
  margin-bottom   : 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cta-note {
	   font-size: 0.9rem;
   opacity: 0.8;
   text-align: center;
     }

.contact-section {


               padding: 80px 2rem;
  background: white;
}

.contact-wrapper {
    max-width: 1200px;
   margin: 0 auto;
  display: grid;
    grid-template-columns    :     1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
					font-size :   2.5rem;
   margin-bottom    :  2rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info p {
         font-size: 1.1rem;
  line-height: 1.6;
   color :       #555;
   margin-bottom: 2rem;
}

.contact-details {


    display: flex;
  flex-direction: column;
  gap: 1rem;
	}

.detail-item {
	display    :        flex;
  gap: 0.5rem;
}

.detail-item strong {
  min-width: 80px;
  color: #2c3e50;
}

.contact-form {
	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); 
  padding: 2.5rem; 
  border-radius: 12px; 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     }

.form-group {
    margin-bottom:  1.5rem;
} 

.form-row {

	   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
	}

.form-group label {
    display: block;
  margin-bottom: 0.5rem;
   font-weight: 500;
  color: #2c3e50;
} 

.form-group input,
.form-group select,
.form-group textarea {
	 width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
   border-radius: 6px;
	font-size     :       1rem;
        transition: border-color 0.3s ease;
   background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: #3498db;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
    padding :     14px;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  color: white;
    border : none;
  border-radius: 6px;
          font-size:   1.1rem;
    font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.main-footer {
  background: #2c3e50;
    color: white;
   padding: 3rem 2rem 1rem;
}

.footer-content {
   gap: 3rem;
  display: grid;
   max-width: 1200px;
  margin: 0 auto;
   grid-template-columns: 1fr 2fr;
}

.footer-brand img {
    height:   40px;
  margin-bottom: 1rem;
}

.footer-brand p {
    line-height   :        1.6;
  opacity: 0.8;
}

.footer-links {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
   gap: 2rem;
}

.link-group h4 {
    font-weight: 600;
    color: #ecf0f1;
  margin-bottom: 1rem;
}

.link-group ul
	{
    list-style: none;
} 

.link-group ul li {
  margin-bottom: 0.5rem;
}

.link-group ul li a {
  color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
  transition: color 0.3s ease;
}

.link-group ul li a:hover {
   color: #3498db;
}

.footer-bottom {
  margin-top: 2rem;
    padding-top   :       2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
    opacity: 0.7;
}

img {
       opacity   :0;
   transition: opacity 0.3s ease;
}

img.loaded {
         opacity: 1;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        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: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item:nth-child(even) .service-details,
    .service-item:nth-child(even) .service-visual {
        order: unset;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }
    
    .hero-banner {
        padding: 100px 1rem 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-container h2,
    .intro-text h2,
    .contact-info h2,
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
   padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
        color: white;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
     grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
} 

.about-hero h1 {
  font-size    :   3rem;
   font-weight: 700;
  margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-description {

	       font-size: 1.2rem;

    line-height: 1.6;

    opacity: 0.95; 
	}

.hero-image img {
      width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.philosophy-section {
	padding: 80px 2rem;
	    background: white;
}

.philosophy-container {
   max-width: 1200px;
    margin: 0 auto;

}

.philosophy-container h2		{
  text-align: center;

    font-size: 2.8rem;

   margin-bottom: 3rem;

    color    : #2c3e50;

  font-weight: 700;
}

.philosophy-grid {
       display: flex;
	flex-direction  :        column;
    gap  :     4rem;

}

.philosophy-item  
  {
   display: grid; 
	  grid-template-columns: 1fr 1fr; 
	 gap: 3rem; 
	   align-items: center;
     }

.philosophy-item.reverse .philosophy-content {
   order: 2;
}

.philosophy-item.reverse .philosophy-visual {
  order: 1;
}

.philosophy-content h3 {
    margin-bottom: 1.5rem;
  color: #2c3e50;
 font-size: 2rem;
   font-weight: 600;
}

.philosophy-content p {
	font-size: 1.1rem; 
	   line-height: 1.7; 
	  color: #555;
}

.philosophy-visual img {
    width: 100%; 
                    border-radius: 12px; 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);


}

.team-approach {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf6 100%);
}



.approach-container {
      max-width: 1200px;
   margin: 0 auto;
	}

.approach-container h2 {
   color: #2c3e50;
   text-align: center;
    font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.approach-benefits {
    display   :       grid;
  grid-template-columns: repeat(3, 1fr);
 gap     :      2rem;
}

.benefit-card {
			background: white;
  padding   :     2.5rem;
   border-radius: 12px;
    text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover
{
  transform: translateY(-5px);
}

.benefit-card h3 {
   font-size: 1.5rem;

  margin-bottom   :        1rem;

  color :      #2c3e50;

  font-weight: 600;


}

.benefit-card p {
	line-height: 1.6;
  color: #666;
}

.expertise-section {
  padding     :80px 2rem;
   background: white;
}

.expertise-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;

}

.expertise-text h2 {
   font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.expertise-text p {
  font-size: 1.1rem;
   line-height     :   1.7;
   color: #555;
   margin-bottom: 1.5rem;
}

.stats-row {

	    display: flex;
	 gap: 2rem;
   margin-top   :       2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
   font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
   font-size: 0.9rem;
    color    : #777;
    font-weight: 500;
}

.expertise-image img {

 width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

}

.methodology-section {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.methodology-container {
   max-width: 1200px;
       margin     :       0 auto;
}

.methodology-container h2 {
   text-align  : center;
	font-size     :2.5rem;
  margin-bottom: 3rem;
  font-weight: 700; 
	
}

.method-steps


{
    display: grid;
  grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.method-step {
        display   :flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
  background: linear-gradient(45deg, #3498db, #2980b9);
	 color: white;
   width: 50px;
   height: 50px;
  border-radius: 50%;
	display: flex;
  align-items: center;
	 justify-content: center;
    font-weight: 700;
   font-size: 1.2rem;
   flex-shrink: 0;
}

.step-content h3 {

  font-size: 1.3rem;
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.step-content p {
    line-height: 1.6;
    opacity: 0.9;}

.values-section {
      padding: 80px 2rem;
    background: white;
}

.values-content {
   max-width: 1200px;
   margin: 0 auto;
}

.values-content h2 {
    font-weight: 700;
    color: #2c3e50;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-align: center;
}

.values-grid {

	  display: grid;

  grid-template-columns: repeat(2, 1fr);

    gap: 2rem;


}

.value-item {
	   padding: 2rem;
   border-left    :        4px solid #3498db;
  background: #f8f9fa;
  border-radius: 8px;
}

.value-item h4 {
  font-size  : 1.4rem;
	margin-bottom: 1rem;
    color: #2c3e50;
  font-weight: 600;
}

.value-item p {
   line-height:1.6;
   color: #555;
}

.workshop-preview {
   padding: 80px 2rem; 
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); 
    color: white;
}

.workshop-content {
        max-width: 1200px;
       margin    :  0 auto;
       display: grid;
      grid-template-columns: 1fr 1fr;
     gap: 4rem;
      align-items: center;
}

.workshop-text h2 {
    font-size: 2.5rem;
	margin-bottom: 2rem;
    font-weight: 700;
}

.workshop-text p {
    font-size: 1.1rem;
  opacity: 0.95;
   line-height: 1.7;
    margin-bottom: 1.5rem;
}

.workshop-action {
  margin-top: 2rem;
}

.back-home-btn {
  display: inline-block;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
      text-decoration: none;
   border-radius: 8px;
	 font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
} 

.back-home-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.workshop-image img {
  width: 100%; 
  border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thankyou-hero {
	 padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color : white;
    text-align: center;
}

.thankyou-container {
   max-width: 1000px;
  margin: 0 auto;
	
}

.thankyou-content {

   margin-bottom: 3rem;


}

.success-indicator {
	margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
    height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
   display: flex;
   align-items:    center;
  justify-content:     center;
   margin: 0 auto;
               position: relative;
}

.checkmark 
 {
    width: 25px;
    height: 15px;
   border: 3px solid white;
   border-top    :        none;
   border-right: none;
  transform: rotate(-45deg);
}

.thankyou-content h1 {
   font-size: 3rem;
    font-weight :        700;
   margin-bottom: 1rem;
}

.thankyou-message {
   font-size: 1.2rem;
    line-height: 1.6;
   opacity: 0.95;
  max-width: 600px;
    margin     :  0 auto;
}

.next-steps 
 {
    background: white;
  padding: 3rem;
	 border-radius: 16px;
    margin-bottom:3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.next-steps h2 {
	      text-align    :    center;
 font-size: 2.2rem;
   color: #2c3e50;
   margin-bottom: 2rem;
  font-weight :     700;
	}

.steps-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
       gap: 2rem;


}

.step-item {
  text-align: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #3498db, #2980b9);
   border-radius: 50%;
   display: flex;
  align-items: center;
     justify-content: center;
   margin: 0 auto 1rem;
    color: white;
   font-size: 1.5rem;
    font-weight: 700;
}

.step-details h3 {
    font-size: 1.3rem;
  color   :        #2c3e50;
   margin-bottom: 0.5rem;
	font-weight: 600; 

}

.step-details p {
	line-height: 1.6;
  font-size: 0.95rem;
    color: #666;
}

.additional-info {
			display: grid;
   grid-template-columns:     1fr 1fr;
   gap: 2rem;
    margin-bottom: 3rem;
}

.info-card,
.contact-reminder {

	    background: white;
    padding    :        2.5rem;
    border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

}

.info-card h3,
.contact-reminder h3 {
    color: #2c3e50;
   font-size: 1.4rem;
   margin-bottom: 1rem;
	font-weight: 600;
}

.info-card p,
.contact-reminder p   {
    line-height: 1.6;
      color: #555;
		margin-bottom: 1rem;
}

.prep-list {
  list-style: none;
    padding: 0;
}

.prep-list li {
  padding: 0.5rem 0;
   position: relative;
	 padding-left: 1.5rem;
  color: #666;
}

.prep-list li::before {
  content: '•';
  position: absolute;
    left: 0;
    color: #3498db;
   font-weight: bold;
}

.phone-contact {
    text-align: center;
    font-size: 1.3rem;
    color: #3498db;
  font-weight: 700;
   margin: 1rem 0;
}

.contact-hours {
  font-size: 0.9rem;
   color: #777;
}

.thankyou-image {
   margin: 3rem 0;
}

.thankyou-image img {
   width:  100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

.return-options {
   background: white;
    padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;

}

.return-options h2 {
    text-align  :       center;
    font-size: 2rem;
  color: #2c3e50;
    margin-bottom :  1rem;
    font-weight: 700;
}

.return-options p {
	text-align: center;
    color  :  #555;
          margin-bottom   : 2rem;
  line-height: 1.6;
}

.option-buttons {
  display   : flex;
    gap: 1rem;
   justify-content: center;
  flex-wrap: wrap;
}

.option-btn {

   display: inline-block;
   text-align    :  center;
    transition: all 0.3s ease;
               border-radius: 8px;
  text-decoration: none;
    padding: 12px 24px;
        font-weight: 600;
     }

.option-btn.primary   {
  background: linear-gradient(45deg, #3498db, #2980b9);
    color: white; 

}

.option-btn.secondary {
	color: #3498db;
  background: transparent;
	border   :     2px solid #3498db;
}

.option-btn:hover {

  transform: translateY(-2px);


}

.option-btn.primary:hover {
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.option-btn.secondary:hover {
    background: #3498db;
      color: white;
}

.testimonial-preview {
          padding:   80px 2rem;
   background: #f8f9fa;
}

.testimonial-container {
  max-width    :  1200px; 
   margin: 0 auto;
}

.testimonial-container h2 {
     text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
          font-weight: 700;
}

.testimonial-grid {
   display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 2rem;
}

.testimonial-item		{
  background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);


}

.testimonial-item p {
  font-style: italic; 
	  line-height: 1.6; 
	    color: #555; 
	   margin-bottom :    1.5rem;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
       margin-bottom: 0.25rem;
}

.testimonial-author span {
   color: #777;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .philosophy-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-item.reverse .philosophy-content,
    .philosophy-item.reverse .philosophy-visual {
        order: unset;
    }
    
    .approach-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .workshop-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .option-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .option-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .next-steps,
    .return-options {
        padding: 2rem;
    }
    
    .info-card,
    .contact-reminder {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
}