:root {
    --primary-color: #1a3a3a;
    --secondary-color: #2d5f5f;
    --accent-color: #4a8f8f;
    --light-bg: #f5f7f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --gradient-1: linear-gradient(135deg, #1a3a3a 0%, #2d5f5f 100%);
    --gradient-2: linear-gradient(135deg, #4a8f8f 0%, #7cb5b5 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
  padding: 0;
	box-sizing: border-box;
}

html

{
                    scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
   background-color: #ffffff;
  line-height :       1.6;
}

.navbar {
  background: var(--primary-color);
  position: sticky;
   top: 0;
   z-index  :  1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

.nav-container {
    max-width: 1200px;
   margin :0 auto;
   padding: 0 20px;
    display: flex;
  justify-content: space-between;
   align-items: center;
    height: 70px;


}

.nav-brand {
    gap: 15px;
   align-items   :   center;
  color: white;
    display: flex;
  text-decoration  :   none;
}

.logo-img {
   height: 94px;
   width: auto;
  filter: brightness(0) invert(1);
}

.brand-name {
  font-size    :    20px;
   font-weight: 700;
    color: white;
    letter-spacing :     -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
   align-items: center;
}

.nav-link {
  color: white;
   text-decoration: none;
  font-weight: 500;
    position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
	 left: 0;
    width    : 0;
   height: 2px;
  background: var(--accent-color);
		transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-toggle  {
  display: none;
  background: none;
  border: none;
   cursor: pointer;
  padding: 5px;
}

.burger-icon {
	  width: 28px;
  height: 28px;
   stroke: white;
   stroke-width     :2;


}

.hero {
  background: var(--gradient-1);
   padding: 120px 20px;
	text-align: center;
  color: white;
    min-height: 600px;
  display: flex;
   align-items: center;
   justify-content: center;
	position: relative;
  overflow: hidden;
} 

.hero::before {
  content: '';
    position: absolute;
  top: 0;
  right: 0;
   width   :        400px;
    height: 400px;
  background: rgba(74, 143, 143, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}.hero-content {
  max-width: 700px;
	 margin: 0 auto;
    position: relative;
  z-index: 2;
}

.hero-title {
    font-size: 48px;
     font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
   letter-spacing: -1px;
}

.hero-subtitle {
    font-size : 20px;
  margin-bottom: 40px;
   opacity: 0.95;
   font-weight: 300;
}

.cta-button {
  display: inline-block;
    padding: 16px 40px;
   background: white;
  color: var(--primary-color);
    text-decoration: none;
   border-radius: 50px;
    font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.about-intro  {
       padding: 80px 20px;
  background: white;
}

.about-container {
  max-width: 1200px;
	margin   : 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2   {
  font-size: 36px;
   margin-bottom: 25px;
  color: var(--primary-color);
}

.about-text p {


    font-size: 16px;
  color: var(--text-light);
   margin-bottom: 20px;
    line-height  :       1.8;
	}

.about-image {

	  width: 100%;
          height :        auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
	
     }

.section-title {
  font-size    :       40px;
	  text-align: center;
	    margin-bottom: 50px;
	  color: var(--primary-color);
	   font-weight: 700;
	   position: relative;
	      padding-bottom: 20px;
}

.section-title::after
	{
  content: '';
   position :      absolute;
  bottom: 0;
   left :  50%;
  transform: translateX(-50%);
       width: 80px;
   height  :  4px;
  background: var(--accent-color);
  border-radius: 2px; 

}

.benefits-grid{
   padding: 80px 20px;
  background: var(--light-bg);
}


.benefits-container {

	   max-width: 1200px;
  margin: 0 auto;
   display:  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
     }

.benefit-card		{
   background: white;
    padding: 35px;
  border-radius  :        12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);


}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-card h3{
      font-size: 22px;
    margin-bottom: 15px;
  color: var(--secondary-color);}

.benefit-card p {
  color: var(--text-light);

	   font-size: 15px;

	   line-height: 1.7;
}

.workshop-showcase {
    padding: 80px 20px;
  background: white;}

.workshop-wrapper {
    max-width    :   1200px;
    margin  :      0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
	 gap    :      60px;
  align-items: center;
}

.workshop-image
	{
  width: 100%;
  height:    auto;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.workshop-content h2 {
   font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}


.workshop-content p {
  color: var(--text-light);
    margin-bottom: 20px;
        font-size: 16px;
   line-height: 1.8;
	
}

.secondary-cta {
	         display: inline-block;
  padding: 12px 32px;
  background: var(--accent-color);
   color: white;
    text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 10px;}

.secondary-cta:hover {
  background: var(--secondary-color);
  transform: translateX(5px);
}

.methodology-section {
    padding  :80px 20px;
  background: var(--light-bg);
}

.methodology-grid {
  max-width: 1200px;
    margin: 0 auto;
    display  : grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.method-item		{
       background: white;
		padding: 30px;
	               border-radius: 10px;
	  border-left: 4px solid var(--accent-color);
	  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); 

}

.method-item h3 {
  font-size: 18px;
	margin-bottom: 15px;
  color: var(--secondary-color);
    font-weight: 700;
}

.method-item p {
  color: var(--text-light);
   font-size: 14px;
    line-height: 1.7; 
	
}

.training-session {
   padding: 80px 20px;
    background: white;
}

.training-wrapper {
  max-width: 1200px;
   margin: 0 auto;
   display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;
}

.training-text h2 {
	font-size: 32px;
    margin-bottom: 20px;
  color: var(--primary-color);
}

.training-text p {
  color: var(--text-light);
    margin-bottom: 20px;
  font-size: 16px;
   line-height: 1.8;
}

.feature-list {
   	list-style: none;
   margin-top: 25px;

}

.feature-list li {

	   padding: 10px 0;
    padding-left: 25px;
  position: relative;
  color: var(--text-light);}

.feature-list li::before {
  content: '▸';
   position: absolute;
  left: 0;
  color: var(--accent-color);
    font-size: 18px;
}

.training-image {
   width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.mentor-approach {
  padding: 80px 20px;
  background: var(--light-bg);
}

.mentor-container {
   max-width:       1200px;
   margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}  

.mentor-image {
   width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
   object-fit   : cover;
  order: -1;
}

.mentor-info h2 {
  font-size: 32px; 
  margin-bottom     :       20px; 
  color: var(--primary-color);
}

.mentor-info p {

	  color: var(--text-light);
   margin-bottom    :    20px;
          font-size:  16px;
    line-height: 1.8;

	}

.mentoring-benefits {
    display: flex;
  flex-wrap: wrap;
  gap: 12px;
   margin-top: 25px; 
	
}

.benefit-tag {
      display: inline-block;
  padding: 8px 16px;
  background: var(--accent-color);
  color: white;
    border-radius   :        20px;
  font-size: 13px;
  font-weight : 600;
}

.services-preview {

    padding: 80px 20px;
    background: white;
	}

.services-cards {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;


}

.service-box  {
  background: white;
  border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
  transition: var(--transition);
   position: relative;
}

.service-box:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(74, 143, 143, 0.15);
  transform: translateY(-8px);
	
}

.service-box h3 {
  font-size: 20px;
    margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-box p {
  color: var(--text-light);
    font-size: 14px;
	line-height: 1.7;
   margin-bottom: 20px;
}

.price-tag {
	display: inline-block;
  padding: 10px 20px;
  background: var(--accent-color);
   color: white;
               border-radius:     6px;
    font-weight: 700;
    font-size    :        14px;
} 

.executive-coaching {
   padding: 80px 20px;
  background: var(--light-bg);
}

.exec-wrapper {
          max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
}

.exec-text h2     {
   font-size: 32px;
    margin-bottom: 20px;
  color: var(--primary-color);
}

.exec-text p {
  color: var(--text-light);
   margin-bottom: 20px;
   font-size: 16px;
    line-height: 1.8;
}

.tertiary-cta {
    display: inline-block;
  padding:  12px 32px;
  background: var(--primary-color);
      color: white;
  text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
  transition: var(--transition);
  margin-top: 15px;
  border: 2px solid var(--primary-color); 
	
}


.tertiary-cta:hover{
  background: transparent;
  color: var(--primary-color);
}

.exec-image {
  width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      object-fit: cover;
}

.cta-section {
   padding: 80px 20px;
  background: var(--gradient-2);
    text-align: center;
    color: white;
}

.cta-box {
    max-width: 700px;
   margin: 0 auto;
}

.cta-box h2 {
    font-size: 40px;
	 margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    margin-bottom: 30px;
   opacity: 0.95;
    line-height    :       1.8;
   font-size: 16px; 
	
}

.primary-cta {
    display   :  inline-block;
  padding: 14px 42px;
   background     :   white;
  color: var(--secondary-color);
   text-decoration :     none;
  border-radius: 50px;
   font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.primary-cta:hover {
  transform: translateY(-3px);
	  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.contact-section {
  padding: 80px 20px;
   background: white;
}

.contact-title {
   font-size: 40px;
   text-align: center;
  color: var(--primary-color);
  margin-bottom: 50px;
  font-weight     :       700;
}

.contact-wrapper {
  max-width: 1000px;
   margin: 0 auto;
 display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 40px;
}

.contact-form {
   background :     white;
   padding     :        40px;
   border-radius: 12px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 25px;
   display: flex;
   flex-direction: column;
}

.form-group label {
    font-weight:   600;
    margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 12px 15px;
  border: 1px solid var(--border-color);
	border-radius  :6px;
    font-family: inherit;
    font-size: 14px;
  transition: var(--transition); 

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {


   outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(74, 143, 143, 0.1);

}

.submit-button {
   padding  :        14px 30px;
  background: var(--gradient-1);
   color: white;
    border     :      none;
    border-radius: 6px;
   font-weight: 700;
    cursor: pointer;
  transition: var(--transition);
    width: 100%;
    font-size: 16px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 58, 58, 0.3);
}

.contact-info {
  background: var(--light-bg);
  padding: 30px;
   border-radius: 12px;
}

.contact-info h3{
  font-size: 20px;
		margin-bottom: 20px;
	  color: var(--primary-color);
}

.address,
.phone,
.hours

{
    font-size: 14px;
  color: var(--text-light);
   line-height: 1.8;
  margin-bottom: 15px;
}

.footer {
  background: var(--primary-color);
    color: white;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
	margin-bottom: 40px;
}

.footer-logo     {
    height: 136px;
	width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap :  40px;
	margin-bottom: 40px;
   padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-size: 16px;
   margin-bottom: 15px;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {

  color: rgba(255, 255, 255, 0.7);
   text-decoration: none;
    font-size: 14px;
  display: block;
   margin-bottom: 10px;
  transition: var(--transition);
}



.footer-section a:hover {
	    color: white;
     padding-left: 5px;}

.footer-address,
.footer-phone {
    font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
}

.footer-bottom {

    text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-radius: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 0;
    }

    .burger-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-container,
    .workshop-wrapper,
    .training-wrapper,
    .mentor-container,
    .exec-wrapper {
        grid-template-columns: 1fr;
    }

    .mentor-image {
        order: 0;
    }

    .section-title {
        font-size: 28px;
    }

    .benefit-card {
        padding: 25px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 25px;
    }

    .nav-brand {
        gap: 10px;
    }

    .logo-img {
        height: 50px;
    }

    .footer-logo {
        height: 80px;
    }

    .mentoring-benefits {
        flex-direction: column;
    }

    .benefit-tag {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 24px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-address,
    .footer-phone {
        font-size: 12px;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a3a3a 0%, #2d5f5f 100%);
    padding     :       100px 20px;
    text-align: center;
  color: white;
   min-height: 400px;
   display: flex;
      align-items: center;
    justify-content: center;
	 position: relative;
	overflow: hidden;
}

.services-hero::before {
  content: '';
   position: absolute;
  top: -50%;
  right: -10%;
    width: 500px;
    height: 500px;
  background: rgba(74, 143, 143, 0.1);
    border-radius   :   50%;
     animation: float 8s ease-in-out infinite;
}

.services-hero-content {
    position: relative;
  z-index: 2;
  max-width: 800px;
}

.services-hero-title {
  font-size: 48px;
   font-weight: 700;
  margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 18px;
  opacity    :       0.95;
	font-weight    :      300;
}

.services-overview {
	  padding: 60px 20px;
    background: white;
  text-align: center;
}


.overview-container {
               max-width     :  900px;
   margin: 0 auto;
}

.overview-intro {
  font-size: 16px;
   color: #6b7280;
    line-height: 1.8;
   margin-top: 25px;
}

.service-detail {
    padding    :   80px 20px;
   border-bottom: 1px solid #e5e7eb;
}

.service-detail:nth-child(odd) {
  background: white;
}

.service-detail:nth-child(even) {

   background: #f5f7f6;
}

.service-grid {


    max-width: 1200px;
    margin: 0 auto;
  display:  grid;
   grid-template-columns  :1fr 1fr;
    gap: 60px;
                    align-items: center;}

.service-grid.reversed    {
       grid-template-columns: 1fr 1fr;
}

.service-image-wrapper {
    position: relative;
}

.service-detail-image {
  width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
  transition: all 0.3s ease;
}

.service-image-wrapper:hover .service-detail-image {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
/* NOTE: keep for legacy support */

.service-description h2
{
    font-size: 32px;
    color: #1a3a3a;
   margin-bottom: 15px;
  font-weight: 700;
	
}

.price-highlight {
	font-size: 18px;
   color: #4a8f8f;
   font-weight: 700;
  margin-bottom: 20px;
    display: block;
}

.service-description p {
    color     :      #6b7280;
    font-size: 15px;
    line-height: 1.8;
  margin-bottom: 20px;}  

.service-description h3  
  {
    font-size: 18px;
  color: #2d5f5f;
    margin-top: 25px;
    margin-bottom: 15px;
  font-weight: 700;
}

.service-features {
  list-style: none;
    margin: 15px 0 25px 0; 
	
}

.service-features li {
   padding: 10px 0;
   padding-left   :    25px;
  position: relative;
    color: #6b7280;
  font-size: 14px;
    line-height: 1.6;
}

.service-features li::before


{
  content: '✓';
    position: absolute;
  left: 0;
   color: #4a8f8f;
   font-weight: 700;
  font-size: 16px;
}

.service-ideal {
  background: rgba(74, 143, 143, 0.08);
  padding: 20px;
  border-radius: 8px;
	border-left: 4px solid #4a8f8f;
	margin: 25px 0;
    font-size: 14px;
  color: #2d5f5f;
}

/* Hack for old browsers */

/* Minified version */
.service-cta {
       display: inline-block;
   padding: 12px 32px;
  background: #4a8f8f;
   color: white;
    text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
    transition  :     all 0.3s ease;
               margin-top: 15px;
}

.service-cta:hover {
  transform: translateX(5px);
    background: #2d5f5f;
}

.service-comparison {
  padding: 80px 20px;
   background: white;
}

.comparison-table-wrapper {
   max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
   border-collapse: collapse;
   background: white;
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: linear-gradient(135deg, #1a3a3a 0%, #2d5f5f 100%);
  color: white;
}
/* Responsive design */


	/* Component styles */

	/* Colors and backgrounds */


.comparison-table th {
   padding: 20px;
	text-align: left;
    font-weight: 700;
  font-size: 14px;
   letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 18px 20px;
         border-bottom: 1px solid #e5e7eb;
    color: #6b7280;
  font-size: 14px; 
	
}

.comparison-table tbody tr:hover {
    background: #f5f7f6;
    transition: background 0.3s ease;


}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.faq-section {
	padding: 80px 20px;
   background: #f5f7f6;
}

.faq-container {
  max-width: 900px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faq-item {

   background: white;
    padding: 25px;
   border-radius: 10px;
   border-left: 4px solid #4a8f8f;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
     }

/* Framework override */

.faq-item:hover		{
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.faq-question {
	font-size: 16px;
        color: #1a3a3a;
  margin-bottom: 12px;
       font-weight: 700;
  cursor   :       pointer;
}

.faq-answer {
  color: #6b7280;
    font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.cta-services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #4a8f8f 0%, #7cb5b5 100%);
    text-align: center;
  color: white; 
	
} 

.cta-services-box {
    max-width: 700px;
       margin: 0 auto;
}

.cta-services-box h2 {
  font-size: 40px;
  margin-bottom: 20px;
   font-weight: 700;
}
	/* Colors and backgrounds */

/* TODO: optimize for mobile */

.cta-services-box p {

   font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
  line-height  :    1.8;

}

.thankyou-section {
    padding: 80px 20px;
  background: white;
  min-height: calc(100vh - 200px);
    display: flex;
	align-items: center;
}

.thankyou-container {
    max-width: 700px;
  margin: 0 auto;
    text-align: center;
} 

.success-indicator {
  margin-bottom: 40px;
}

.checkmark-circle {
  width: 120px;
   height    : 120px;
   margin: 0 auto;
  background: linear-gradient(135deg, #4a8f8f 0%, #7cb5b5 100%);
  border-radius: 50%;
    display: flex;
   align-items :   center;
    justify-content: center;
  position: relative;
   animation: scaleIn 0.6s ease-out;


}
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.checkmark-svg {

	    width: 80px;
    height: 80px;
	stroke: white;
   stroke-width: 2;
    stroke-linecap:  round;
   stroke-linejoin: round;
	}

.checkmark-svg circle {
	    animation: drawCircle 0.6s ease-out 0.3s both;
     }

.checkmark-svg path {
    animation: drawPath 0.6s ease-out 0.6s both;
}@keyframes drawCircle {
    from {
        stroke-dasharray: 157;
        stroke-dashoffset: 157;
    }
    to {
        stroke-dasharray: 157;
        stroke-dashoffset: 0;
    }
}

@keyframes drawPath {
    from {
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
    }
    to {
        stroke-dasharray: 48;
        stroke-dashoffset: 0;
    }
}.thankyou-title {

	   font-size     :     36px;
  color: #1a3a3a;
                    margin-bottom: 15px;
    font-weight: 700;}

.thankyou-message {
  font-size: 16px;
   color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.8;
}


.confirmation-details {
    background: #f5f7f6;
    padding: 30px;
    border-radius: 12px;
  margin-bottom: 40px;
 text-align: left;
}

.confirmation-details h2 {
    font-size: 20px;
   color: #1a3a3a;
  margin-bottom: 20px;
  text-align:       center;
}

.details-box {
   display  :       flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
	 display: flex;
  justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
  border-bottom :      none;
}

.detail-label {
 font-weight: 700;
   color: #2d5f5f;
}

.detail-value
{
    color: #6b7280;
  text-align: right;
}

.status-success {


    color: #4a8f8f;
   font-weight: 700;
	}

.next-steps {
    margin-bottom: 40px;
  text-align: left;
}

.next-steps h2 {
   font-size: 20px;
    color: #1a3a3a;
    margin-bottom: 25px;
	 text-align  :      center;
    font-weight: 700;
}

.steps-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 25px;
}

.step-item {
  display: grid;
        grid-template-columns: 50px 1fr;
	gap: 20px;
  align-items: start;
}

.step-number {
  width: 50px;
	height: 50px;
  background: linear-gradient(135deg, #4a8f8f 0%, #7cb5b5 100%);
    color: white;
    border-radius: 50%;
   display: flex;
    align-items: center;
	 justify-content: center;
    font-weight: 700;
    font-size: 18px;
   flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 8px;
  font-size: 16px;
	color: #1a3a3a;
   font-weight: 700;
}

.step-content p {
  font-size: 14px;
	color: #6b7280;
   line-height: 1.6;
}

.additional-info {
  background: white;

	   border: 2px solid #e5e7eb;

	  padding: 30px;

	    border-radius: 10px;

	 margin-bottom: 40px;

	    text-align: center;
}

.additional-info h2 {
  font-size   :       18px;
   color: #1a3a3a;
   margin-bottom: 15px;
    font-weight: 700;
}

.additional-info p	{
  color: #6b7280;
	font-size: 14px;
    line-height: 1.8;
  margin-bottom: 10px;
}

.contact-highlight {
  font-size: 20px;
   color: #4a8f8f;
  font-weight: 700;
  margin: 15px 0;
}

.action-buttons		{
  display: flex;
    gap: 15px;
  justify-content: center;
    margin-top: 30px;
  flex-wrap: wrap;
}

.return-button,
.explore-button {
  display: inline-block;
    padding: 12px 30px;
   border-radius: 8px;
   font-weight: 600;
  text-decoration: none;
  transition    :        all 0.3s ease;
	 font-size: 14px;
}

.return-button {


  background:   #1a3a3a;
    color: white;
	}

.return-button:hover {

	    background: #2d5f5f;
  transform: translateY(-2px);
     }

.explore-button     {

	   background: white;
  color:   #1a3a3a;
    border: 2px solid #1a3a3a;
	}

.explore-button:hover {
    background: #1a3a3a;
   color: white;
}

.inspiration-section {
       padding: 80px 20px;
  background: linear-gradient(135deg, #1a3a3a 0%, #2d5f5f 100%);
   color: white;
   text-align: center;
}

.inspiration-content {
   max-width: 800px;
  margin: 0 auto;
}

.inspiration-content p {
   font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
    opacity: 0.95;
}

.inspiration-quote {
   font-size   :     20px;
   font-style: italic;
    margin: 30px 0;
    padding: 30px 25px;
       border-left: 4px solid #4a8f8f;
  background: rgba(74, 143, 143, 0.1);
  border-radius: 8px;
  line-height  :     1.8;
}@media (max-width: 768px) {
    .services-hero-title {
        font-size: 32px;
    }

    .service-grid,
    .service-grid.reversed {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-description h2 {
        font-size: 24px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .return-button,
    .explore-button {
        width: 100%;
        text-align: center;
    }

    .checkmark-circle {
        width: 100px;
        height: 100px;
    }

    .checkmark-svg {
        width: 70px;
        height: 70px;
    }

    .thankyou-title {
        font-size: 28px;
    }

    .cta-services-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 60px 15px;
        min-height: 300px;
    }

    .services-hero-title {
        font-size: 24px;
    }

    .services-hero-subtitle {
        font-size: 14px;
    }

    .service-detail {
        padding: 40px 15px;
    }

    .service-description h2 {
        font-size: 20px;
    }

    .detail-row {
        flex-direction: column;
        gap: 5px;
    }

    .detail-value {
        text-align: left;
    }

    .inspiration-quote {
        font-size: 16px;
        padding: 20px 15px;
    }

    .confirmation-details {
        padding: 20px;
    }
}.policy-hero-section {
  background: linear-gradient(135deg, #1a3a3a 0%, #2d5f5f 100%);
  padding :     80px 20px;
   text-align: center;
  color: white;
  min-height: 300px;
	 display: flex;
    align-items: center;
        justify-content: center;
  position: relative;
  overflow: hidden;
}

.policy-hero-section::before {
  content: '';
  position: absolute;
  top:   -50%;
	right: -10%;
   width   :400px;
  height: 400px;
  background: rgba(74, 143, 143, 0.1);
  border-radius: 50%;
	animation: float 8s ease-in-out infinite;
}

.policy-hero-content {

   position: relative;
    z-index: 2;
	max-width: 800px;


}

.policy-hero-title {

  font-size: 44px;
  font-weight: 700;
   margin-bottom: 15px;
   line-height: 1.2;
	}

.policy-hero-subtitle {
    font-size: 16px;
	opacity: 0.95;
   font-weight: 300;
}

.policySection {
  padding: 80px 20px;
  background: white;
}

.policyContainer {
  max-width: 850px;
   margin: 0 auto;
    text-align: left;

}

.policyContainer h2 {
      font-size: 28px;
	 color: #1a3a3a;
   margin-bottom: 20px;
    margin-top: 35px;
     font-weight: 700;
	line-height: 1.3;
}

.policyContainer h2:first-of-type {
   margin-top: 0;
}

.policyContainer p {
    color: #6b7280;
  margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.policyContainer p:last-of-type {
   margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-hero-section {
        padding: 60px 15px;
        min-height: 250px;
    }

    .policy-hero-title {
        font-size: 32px;
    }

    .policy-hero-subtitle {
        font-size: 14px;
    }

    .policySection {
        padding: 60px 15px;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 22px;
        margin-top: 25px;
    }

    .policyContainer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .policy-hero-section {
        padding: 50px 10px;
        min-height: 220px;
    }

    .policy-hero-title {
        font-size: 24px;
    }

    .policy-hero-subtitle {
        font-size: 12px;
    }

    .policySection {
        padding: 40px 10px;
    }

    .policyContainer h2 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.6;
    }
}