* {
  margin: 0;
   padding: 0;
   box-sizing: border-box; 

}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --border-color: #ecf0f1;
    --success-color: #27ae60;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
         background-color  :#ffffff;
} 

.navigation-bar {
  position: sticky;
       top: 0;
	z-index: 1000;
  background: var(--primary-color);
  padding    :       1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}


.nav-container		{
	               max-width    :     1200px;
    margin: 0 auto;
       padding: 0 1.5rem;
	 display: flex;
    justify-content: space-between;
   align-items: center;


}

.nav-logo
	{
    flex-shrink: 0; 

}

.logo-img {
   height: 40px;
  width: auto;
   display: block;
}

.nav-links {
    display: flex;
  list-style: none;
    gap: 2.5rem;
}

.nav-links a {
   color: #ffffff;
   text-decoration: none;
   font-size: 1rem;
    font-weight: 500;
   transition: color 0.3s ease;
   position  :  relative;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.nav-links a::after {
	  content: '';
  position: absolute;
    bottom: -4px;
  left: 0;
  width: 0;
     height: 2px;
  background: var(--secondary-color);
        transition: width 0.3s ease;


}

.nav-links a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
  background: none;
   border: none;
    cursor: pointer;
    flex-direction: column;
  gap     :    5px;
    z-index   : 2000;
}

.burger-menu span

{
    width: 25px;
 height: 3px;
     background: #ffffff;
  transition: all 0.3s ease;
    border-radius: 2px;

}

.burger-menu.active span:nth-child(1)  {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
   opacity :       0;
}

.burger-menu.active span:nth-child(3) {

  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
  display: grid;

	   grid-template-columns: 1fr 1fr;

	  gap: 3rem;

	  align-items :   center;

	   max-width: 1200px;

	    margin: 0 auto;

	  padding: 4rem 1.5rem;
}

.hero-content h1 {
     font-size: 3.5rem;
  color: var(--primary-color);
   margin-bottom   :1.5rem;
   line-height: 1.2;
    font-weight: 700;



}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
    margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-button-primary {

    display: inline-block;
  background: var(--secondary-color);
  color:        white;
          padding:      0.85rem 2rem;
  border-radius: 4px;
   text-decoration    :none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
    cursor: pointer;
   font-size: 1rem;
     }

.cta-button-primary:hover {
	  background: #2980b9;
	border-color  :     #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);


}

.hero-image img {
   width: 100%; 
	    height: auto; 
	  border-radius: 8px; 
	  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.intro-section {
  background: var(--light-bg);
    padding: 4rem 1.5rem;
} 

.section-content {
    max-width   :       1200px;
        margin: 0 auto;
	
}

.intro-section h2 {
    font-size: 2.5rem; 
    text-align: center; 
  color: var(--primary-color); 
  margin-bottom: 3rem; 
   font-weight: 700;
}

.intro-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.intro-card {
  background: white;
    padding: 2rem;
  border-radius  :     8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.intro-card:hover {


  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

	  transform: translateY(-4px);
	}

.intro-card h3 {
   font-size: 1.5rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.intro-card p {
    color   :        #666;
   font-size: 1rem;
   line-height     :  1.8;
}

.training-section {
  padding :      4rem 1.5rem;
   background: white;

}

.training-section h2 {

		font-size: 2.5rem;
   text-align: center;
  color: var(--primary-color);
   margin-bottom: 3rem;
   font-weight: 700;}

.programs-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.program-card {
      background: white;
   border-radius: 8px;
	overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display    :     flex;
   flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.program-card img


{
   width: 100%;
       height: 220px;
     object-fit: cover;
}

.program-card h3 {
	 font-size: 1.5rem;
  color: var(--primary-color);
    margin    :        1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.program-card p {
    color: #666;
  padding: 0 1.5rem;
    font-size: 0.95rem;
   line-height :        1.7;
}

.features-list {
   list-style: none;
    padding: 1rem 1.5rem;
    margin-top: auto;
} 

.features-list li    {
  color: var(--secondary-color);
  padding :     0.4rem 0;
	font-size: 0.9rem;
    position: relative;
   padding-left: 1.5rem;
}


.features-list li:before {
  position: absolute;
   left: 0;
  content: '✓';
  font-weight: bold;
}

.workshop-section {
        padding :     4rem 1.5rem;
  background: var(--light-bg);
}

.workshop-section h2 {
    font-size: 2.5rem;
     text-align: center;
  color: var(--primary-color);
    margin-bottom: 3rem;
   font-weight: 700;
}

.workshop-grid {


   display: flex;
	flex-direction: column;
    gap: 3rem;
}

.workshop-item {
          grid-template-columns: 1fr 1fr;
  align-items: center;
  display: grid;
  gap: 2.5rem;
}

.workshop-item:nth-child(even) {
	 direction: rtl;
}

.workshop-item:nth-child(even) > *   {
   direction: ltr;
}

.workshop-item img {
  width: 100%;
  border-radius  : 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.workshop-text h3 {
    font-size    :       1.8rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
  font-weight: 600;
}

.workshop-text p{
  color: #666;
  font-size  :      1.05rem;
    line-height: 1.8;

}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
               padding: 4rem 1.5rem;
  text-align: center;
     color  : white;
}

.cta-content h2 {
   font-size: 2.2rem;
   margin-bottom: 1rem;
		font-weight: 700;
}

.cta-content p {
       font-size: 1.1rem;
   margin-bottom: 2rem;
       opacity :0.95;
   max-width: 600px;
  margin-left: auto;
    margin-right: auto;}

.cta-button-secondary {
  display: inline-block;
    background: white;
  color: var(--primary-color);
    padding: 0.85rem 2.5rem;
   border-radius: 4px;
   text-decoration    :      none;
   font-weight: 600;
  transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
  font-size: 1rem;
}

.cta-button-secondary:hover{
  background: var(--secondary-color);
   color: white;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.contact-section {
  padding: 4rem 1.5rem;
   background: white; 
}

.contact-section h2 {
   font-size: 2.5rem;
   text-align: center;
  color: var(--primary-color);
   margin-bottom: 3rem;
   font-weight: 700;
	}

.contact-container {
    max-width: 1000px;

   grid-template-columns: 1.5fr 1fr;

  gap   :3rem;

  margin: 0 auto;

   display: grid;
}


.contact-form 
 {
  background: var(--light-bg);
    padding: 2rem;
	 border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom :   1.5rem;
    display: flex;
   flex-direction: column; 
	
}

.form-group label 
 {
  font-weight: 600;
  color: var(--primary-color);
   margin-bottom    :      0.5rem;
  font-size: 0.95rem;
}  

.form-group input,
.form-group select,
.form-group textarea {
	 padding    :        0.75rem;

	  border: 1px solid var(--border-color);

	      border-radius: 4px;

	   font-size: 1rem;

		 font-family: inherit;

	    transition: all 0.3s ease;
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
       outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); 
	}


.submit-button {
  background: var(--secondary-color);
   color: white;
  padding: 0.85rem 2rem;
    border: none;
    border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
   transition    :      all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
   background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3); 
	
}

.contact-info {
  background: white;
      padding    :  2rem;
             border-radius: 8px;
     border-left: 4px solid var(--secondary-color);
}



.contact-info h3 {
    font-size :   1.5rem;
  color: var(--primary-color);
	margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-info p {
    color     : #666;
  margin-bottom: 0.75rem;
          line-height: 1.8;
}

.phone-info   {
	 font-weight: 600;
  color: var(--secondary-color);
   font-size   :       1.1rem;
               margin-top: 1rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .intro-section h2,
    .training-section h2,
    .workshop-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .workshop-item {
        grid-template-columns: 1fr;
    }

    .workshop-item:nth-child(even) {
        direction: ltr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-subtitle,
    .cta-content p {
        font-size: 1rem;
    }

    .program-card h3,
    .workshop-text h3 {
        font-size: 1.3rem;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .intro-section h2,
    .training-section h2,
    .workshop-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .intro-grid {
        gap: 1.5rem;
    }

    .intro-card {
        padding: 1.5rem;
    }

    .programs-grid {
        gap: 1.5rem;
    }

    .cta-button-primary,
    .cta-button-secondary,
    .submit-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: white;
   padding: 5rem 1.5rem;
    text-align: center;
}

.services-hero-content h1 {
   font-size: 3rem;
  margin-bottom: 1rem;
    font-weight     :    700;

}

.services-hero-content p 
 {
  margin: 0 auto;
    font-size: 1.3rem;
  max-width: 700px;
   opacity: 0.95;
}

.services-overview {
   padding: 4rem 1.5rem; 
	  background: white;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap  :        2rem;
	 max-width  :  1200px;
  margin: 0 auto;
}

.service-tile {
  background: var(--light-bg);
       padding: 2rem;
   border-radius: 8px;
    text-align   :    center;
   transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-color);
}

.service-tile:hover     {

	  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    background: white;
	}

.service-icon {
	 font-size :     2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-tile h3 {
    font-size :   1.4rem;
  color: var(--primary-color);
   margin-bottom: 0.8rem;
   font-weight: 600;
}

.service-tile p {
   color: #666;
  font-size :    0.95rem;
  line-height: 1.7;
}

.detailed-services {
   padding   :       4rem 1.5rem;
  background: var(--light-bg);
}

.detailed-services h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom   :   3rem;
    font-weight: 700;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
               gap: 3rem;
    align-items   :        center;
   background: white;
               padding    :2.5rem;
    border-radius: 8px;
   margin-bottom    :   2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-detailed.alternate{
    grid-template-columns: 1fr 1fr;
}

.service-detail-image img {
   width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-detail-text h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
	font-weight: 600;
}

.service-detail-text p {
   color: #666;
	 font-size: 1rem;
    line-height: 1.8;
   margin-bottom: 1.5rem;
}


.detail-features {
  list-style: none;
      margin-bottom   :       1.5rem;
}

.detail-features li {
  color: var(--primary-color);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
 position: relative;
    font-size: 0.95rem;
}

.detail-features li:before {

  content: '✓';
	position: absolute;
   left: 0;
         font-weight: bold;
  color: var(--success-color);
}

.service-price {

	   font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);}

.service-packages {
    padding: 4rem 1.5rem;
    background: white;
}

.service-packages h2 {
	font-size    :        2.5rem;
  text-align: center;
  color: var(--primary-color);
	 margin-bottom: 0.5rem;
    font-weight: 700;
}

.packages-intro
{
  text-align: center;
    color: #666;
    margin-bottom :    3rem;
          font-size: 1.1rem;
}

.packages-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
  max-width :   1200px;
        margin: 0 auto;
}

.package {
  background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
  border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display  :   flex;
   flex-direction: column;
}

.package.featured {
  border-color: var(--secondary-color);
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(52, 152, 219, 0.2);
}

.package:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}



.package-header h3
{
  font-size: 1.5rem;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
  font-weight: 600;
}

.package-subtitle {


  color: var(--secondary-color);
  font-size: 0.9rem;
    font-weight: 600;
     }

.package-price {
  font-size: 2rem;
 font-weight: 700;
  color: var(--secondary-color);
       margin: 1.5rem 0;
}

.package-features {
   flex-grow: 1;
    list-style: none;
               margin-bottom: auto;
}

.package-features li {
    color: #666;
	 padding: 0.6rem 0;
        padding-left    :      1.5rem;
   position: relative;
    font-size: 0.95rem;
}

.package-features li:before	{
     content: '→';
    position: absolute;
   left: 0;
  color: var(--secondary-color);
    font-weight: bold;

}

.package-duration     {
   background: white;
		 padding  :  1rem;
   border-radius: 4px;
   text-align: center;
  color: var(--primary-color);
   font-weight: 600;
   margin-top: 1.5rem;
    font-size: 0.9rem;
}

.why-choose-us {
  padding: 4rem 1.5rem;
  background: var(--light-bg); 

}

.why-choose-us h2 {
    font-size: 2.5rem;
   text-align: center;
  color: var(--primary-color);
 margin-bottom  :   3rem;
  font-weight: 700;
}

.reasons-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  max-width: 1200px;
   margin: 0 auto; 

}

.reason-item {
   background: white;
    padding   :    2rem;
   border-radius:  8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reason-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.reason-item h4 {
    font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 600; 
	
}

.reason-item p {

	color: #666;
  font-size: 0.95rem;
  line-height:        1.7;
}

.faq-section {
  padding: 4rem 1.5rem;
   background     :white; 



}

.faq-section h2 {
          font-size: 2.5rem; 
	    text-align :   center; 
	  color: var(--primary-color); 
	  margin-bottom     :    3rem; 
	   font-weight: 700;
}

.faq-list {
	 display: grid;
  max-width   :     900px;
  gap: 1.5rem;
          margin: 0 auto;
} 

.faq-item {
  background: var(--light-bg);
	    padding: 1.8rem;
	    border-radius: 8px;
	  border-left: 4px solid var(--secondary-color);
	   transition: all 0.3s ease;
}

.faq-item:hover


{
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.faq-item h4 {
	 font-size: 1.1rem;
  color: var(--primary-color);
	margin-bottom: 0.8rem;
	font-weight: 600;
}

.faq-item p

{
  color: #666;
    font-size: 0.95rem;
         line-height: 1.7;
}

.cta-services


{
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 1.5rem;
   text-align: center;} 

.cta-services-content {
  max-width: 700px;
   margin  :    0 auto;
  color: white;
}

.cta-services-content h2 {
   font-size  :       2.2rem;
	   margin-bottom   :   1rem;
	   font-weight: 700;
}

.cta-services-content p {
   font-size: 1.1rem;
		margin-bottom: 2rem;
	    opacity: 0.95;
}

.thankyou-hero {
  background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
    color: white;
               padding: 5rem 1.5rem;
        text-align: center; 

}

.thankyou-content

{
	max-width: 600px;
   margin: 0 auto;
}

.success-icon
	{
           margin-bottom   :        2rem;
    display: flex;
         justify-content: center;


}

.success-icon svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
} 

.thankyou-hero h1 {

	    font-size: 2.5rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.thankyou-subtitle {
   font-size: 1.2rem;
   opacity: 0.95;
}


.thankyou-information {
    padding:  4rem 1.5rem;
    background     :     white;
}

.info-grid {
    display : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   max-width: 1200px;
    margin: 0 auto;
}

.info-card {
  background: var(--light-bg);
    padding: 2rem;
   border-radius     : 8px;
  border-top: 4px solid var(--success-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-card h3     {
   font-size: 1.4rem;
  color: var(--primary-color);
    margin-bottom    :1rem;
   font-weight: 600;
}

.info-card p {
   	color: #666;
	font-size: 0.95rem;
                    line-height: 1.8;
     }

.next-steps {
	padding: 4rem 1.5rem;
  background: var(--light-bg);
}

.next-steps h2 {
    font-size: 2.2rem;
	text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
    font-weight: 700;
}

.steps-container {


  display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
                    max-width     :      1200px;
  margin: 0 auto;
	}

.step {
   background: white;
   padding: 2rem;
  border-radius: 8px;
 text-align  :     center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-number


{
       width: 50px;
	height     :        50px;
  background: var(--secondary-color);
      color: white;
  border-radius: 50%;
  display : flex;
    align-items:     center;
    justify-content: center;
  font-size   :      1.5rem;
    font-weight: 700;
   margin: 0 auto 1rem;


}

.step h4 {
    font-size: 1.1rem;
  color: var(--primary-color);
   margin-bottom: 0.8rem;
   font-weight: 600; 
	
}

.step p {
   color  :#666;
  font-size: 0.9rem;
  line-height: 1.7;
}

.recommended-programs
{
       padding  :      4rem 1.5rem;
  background: white;
}

.recommended-programs h2 {


   font-size: 2.2rem;
    text-align: center;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
   font-weight: 700;
}

.programs-intro {
	 text-align: center;
    margin-bottom: 2.5rem;
   color: #666;
}

.programs-showcase

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   max-width: 1200px;
    margin: 0 auto;
}

.program-card-thankyou {
  background: var(--light-bg); 
	  padding: 2rem; 
	    border-radius: 8px; 
	  border-left: 4px solid var(--secondary-color); 
	   transition    :  all 0.3s ease;
}

.program-card-thankyou:hover 
 {
  transform: translateY(-4px);
	  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.program-card-thankyou h3 {
    font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom    :       0.8rem;
    font-weight: 600;
}

.program-card-thankyou p {

		 color: #666;
  font-size: 0.95rem;
	line-height: 1.7;
   margin-bottom: 1.5rem;
	


}

.program-price-thankyou {


  font-size   :   1.3rem;
    font-weight: 700;
  color: var(--secondary-color);
     }

.testimonials-section {


  padding: 4rem 1.5rem;
  background: var(--light-bg); 
	
     }

.testimonials-section h2 {
    font-size :    2.2rem;
  text-align: center;
  color: var(--primary-color);
    margin-bottom: 3rem;
   font-weight :      700;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
	max-width: 1200px;
    margin: 0 auto;
	
}

.testimonial {
   background: white;

		padding: 2rem;

	   border-radius: 8px;

	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

	  border-top: 3px solid var(--secondary-color);
}

.testimonial-text {
    color: #666;
               font-size: 1rem;
    line-height  :      1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
  color: var(--primary-color);
  font-weight  :       600;
    font-size: 0.95rem;
}


.cta-return{
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 1.5rem;
    text-align: center;
}

.cta-return-content {
	 max-width: 700px;
   margin   :        0 auto;
  color  :      white;
}

.cta-return-content h2 {
   font-size: 2rem;
  margin-bottom: 1rem;
  font-weight   :700;
}

.cta-return-content p {
   font-size: 1.1rem;
		 margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {

   display: flex;
	  gap: 1rem;
	    justify-content: center;
	  flex-wrap: wrap;}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detailed {
        grid-template-columns: 1fr;
    }

    .service-detailed.alternate {
        grid-template-columns: 1fr;
    }

    .package.featured {
        transform: scale(1);
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .detailed-services h2,
    .service-packages h2,
    .why-choose-us h2,
    .faq-section h2,
    .recommended-programs h2,
    .testimonials-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1.5rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-tile {
        padding: 1.5rem;
    }

    .service-detailed {
        padding: 1.5rem;
    }

    .program-card-thankyou,
    .info-card,
    .step,
    .reason-item,
    .faq-item,
    .testimonial {
        padding: 1.5rem;
    }

    .cta-services-content h2,
    .cta-return-content h2 {
        font-size: 1.5rem;
    }

    .cta-services-content p,
    .cta-return-content p {
        font-size: 1rem;
    }
}.policySection {
   padding: 80px 2rem;
	background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
    max-width: 900px;
	 margin   :    0 auto;
	text-align: left;
}
	/* Minified version */



/* Typography */

.policyContainer h1 {
  font-size: 2.8rem;
  color: var(--primary-color);
   margin-bottom: 2rem;
   font-weight: 700;
  border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 1rem;
}

.policyContainer h2 {
    font-size: 1.6rem;
  color: var(--primary-color);
	margin-top: 2.5rem;
       margin-bottom: 1.2rem;
     font-weight: 600;
}

.policyContainer p {
  color: #555; 
	    margin-bottom: 1.5rem; 
	  line-height: 1.9; 
	  font-size  :    1rem; 
	   text-align  :  justify;
}

/* Vendor-specific */


/* Vendor-specific */

.policyContainer p:first-of-type {
  font-size  :   1.05rem;
	color: #666;
}
@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: left;
    }
}.footer-section {
  background: var(--primary-color);
   color: #fff;
  padding: 3rem 1.5rem 1rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
   display: flex;
  flex-direction: column;
	 gap   : 2rem; 

}

.footer-logo {
	display: flex;
    justify-content: flex-start;
  align-items: center;
}

.footer-logo-img {
    height: 50px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-content {
  display: flex;
    justify-content: space-between;
  gap: 2rem;
    flex-wrap: wrap;
}

.footer-column {
     min-width: 180px;} 

.footer-column h4 {
    font-size: 1.1rem;
  margin-bottom: 1rem;
    font-weight     :    600;
  color: var(--secondary-color);
	
}

.footer-column ul {
     list-style: none;
    padding: 0;
   margin: 0;
}

.footer-column li {
  margin-bottom: 0.7rem;
}

.footer-column a {
   color    :       #fff;
  text-decoration: none;
  transition: color 0.2s;
   font-size: 1rem;
}

.footer-column a:hover {
  color: var(--accent-color);
 text-decoration:   underline;
}  

.footer-bottom
{
  border-top: 1px solid var(--border-color);
    margin-top: 2rem;
  text-align: center;
  font-size    :     0.95rem;
       color: #f8f9fa;
       padding-top: 1rem;
  opacity: 0.8;
}@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-container {
        gap: 1rem;
    }
}
