* {
  margin: 0;
   padding: 0;
     box-sizing: border-box;
	
}

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d6a4f;
    --accent-color: #52b788;
    --light-bg: #f1f5f3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

		 line-height: 1.6;

	  color: var(--text-dark);

	  background-color: var(--white); 

}

h1 {
     font-size: 3rem;
   font-weight: 700;
  color: var(--primary-color);
   margin-bottom: 1rem;
    line-height: 1.2;
	}

h2 {
    font-size: 2.2rem;
               font-weight: 600;
  color: var(--primary-color);
	 margin-bottom: 1.5rem;
   text-align: center;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
    margin-bottom:     0.8rem;
}

h4 {
    font-size: 1.1rem;
	font-weight: 600;
  color: var(--text-dark);
   margin-bottom: 0.5rem;
}

p		{
  color: var(--text-light);
       line-height  :   1.7;
  margin-bottom: 1rem;
}

a {
   text-decoration: none;
   color: inherit;
}

.main-navbar {
  background-color: var(--white);
   padding: 1rem 0;
  box-shadow: var(--shadow-sm);
   position: sticky;
  top: 0;
          z-index   :  1000;
}

.navbar-container {
  max-width: 1200px;
   margin: 0 auto;
   padding : 0 2rem;
	display: flex;
    justify-content: space-between;
   align-items: center;
}

.navbar-logo-section {
    display: flex;
  align-items: center;
}

.navbar-logo {
   height: 64px;
   width     :auto;
   display: block;
}

.navbar-menu {
	  display: flex;
  gap: 2rem;
   align-items: center;
	}

.navbar-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.navbar-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);


}

.burger-menu {
  display: none;

     flex-direction: column;

   background: none;

   border: none;

        cursor: pointer;

   gap:      0.4rem;
}


.burger-menu span {
    width    :  25px;
                    height: 3px;
  background-color: var(--text-dark);
  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 {
  max-width: 1200px;
  margin: 0 auto;
                    padding: 4rem 2rem;
    display: grid;
    grid-template-columns :        1fr 1fr;
    gap     : 3rem;
    align-items: center;
}

.hero-content h1 {
   margin-bottom: 1.5rem; 
	
}

.hero-content p {
    font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
     }

.hero-button{
         display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding   :1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.hero-button:hover {
     background-color: var(--secondary-color);
     transform: translateY(-2px);
     box-shadow: var(--shadow-lg);
	}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.services-preview-section {
  background-color: var(--light-bg);
  padding: 4rem 2rem;
    margin: 2rem 0;
}

.services-preview-section h2 {
  margin-bottom:   3rem;
}

.services-grid {

  max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap :       2rem;
	}

.service-card {
  background-color: var(--white);
       border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
     box-shadow: var(--shadow-lg);
	
}

.service-card img {
          width: 100%;
  height: 250px;
 object-fit: cover;
}

.service-card h3 {
	  padding: 1.5rem 1.5rem 0.5rem;
	}


.service-card p	{
    padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.transformation-section {
        max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;
    display   :        grid;
  grid-template-columns: 1fr 1fr;
	 gap: 3rem;
	align-items: center;
}

.transformation-content h2 {
   text-align: left;
	 margin-bottom: 1rem;
}

.transformation-content > p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.transformation-list {

               display: flex;
   flex-direction: column;
	gap: 1.5rem;


}

.transformation-item {

	   padding: 1.5rem;
  border-left: 4px solid var(--accent-color);
  background-color: var(--light-bg);
	 border-radius: 4px;

}

.transformation-item h4  {
  color: var(--primary-color);
   margin-bottom   :0.7rem;
}

.transformation-item p {

	 margin: 0;
    font-size: 0.95rem;
}

.transformation-image img {


   width: 100%;

	    height :   auto;

	   border-radius: 12px;

	  box-shadow: var(--shadow-lg);


}

.conference-section {
  background: linear-gradient(135deg, #f1f5f3 0%, #e8f3ed 100%);
   padding: 4rem 2rem;
    margin: 2rem 0;
}

.conference-section h2 {
    margin-bottom: 0.5rem;
}

.section-description {
    text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
          font-size: 1.05rem;
}

.conference-cards


{
  margin   :        0 auto;
   gap: 2rem;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

.conference-card

{
  background-color: var(--white);
  padding   :    2rem;
   border-radius   : 12px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent-color);
    transition: all 0.3s ease;

}

.conference-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.conference-header {
               display: flex;
    justify-content: space-between;
    align-items    :   flex-start;
					margin-bottom: 1rem;
         gap: 1rem;
}

.conference-header h3 {
  margin: 0;
   flex:    1;
}

.conference-type {


  background-color: var(--accent-color);
  color: var(--white);
   padding: 0.4rem 0.8rem;
    border-radius: 20px;
          font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;}

.conference-card p

{
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.conference-details {
	 padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.conference-details span   {
  color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;



}

.coaching-focus-section {
    max-width: 1200px;
   margin: 0 auto;
   padding: 4rem 2rem;
	 display: grid;
   grid-template-columns: 1fr 1fr;
	gap :3rem;
  align-items: center;
}

.coaching-focus-content h2 {
       text-align: left;
  margin-bottom: 1rem;
	}

.coaching-focus-content > p {

	    font-size: 1.05rem;

	  margin-bottom: 2rem;}

.coaching-benefits   {
	list-style: none;
  display: flex;
    flex-direction: column;
         gap: 1rem;
}

.coaching-benefits li {
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.coaching-benefits li:before {

	  content: "✓";
   position:        absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
    font-size: 1.2rem;}

.coaching-focus-image img {
    width :    100%;
        height :        auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.team-collaboration-section
{
  background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.team-collaboration-section h2 {
   margin-bottom: 0.5rem;
}

.team-collaboration-section > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.collaboration-grid {
  max-width: 1200px;
  margin     : 0 auto;
    display: grid;
  grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
}

.collaboration-card {
  background-color: var(--white);
   border-radius: 12px;
	 overflow: hidden;
  box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.collaboration-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.collaboration-card img {

    width    :     100%;
    height: 300px;
    object-fit: cover;

}

.collaboration-card h3 {
   padding  :  1.5rem 1.5rem 0.5rem;
}

.collaboration-card p {
    padding: 0 1.5rem 1.5rem;
   font-size    :       0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding  :    4rem 2rem;
                    text-align   :    center;
  margin: 2rem 0;


}

.cta-section h2 {
  color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
   margin: 0 auto 2rem;
   font-size: 1.1rem;
}

.cta-button {
    display    : inline-block;
  background-color: var(--accent-color);
  color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
   font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}



.contact-section {
   margin: 0 auto;
    max-width: 800px;
   padding: 4rem 2rem;
}

.contact-section h2 {
   margin-bottom: 2rem;
}

.contact-form {
     background-color: var(--light-bg);
               padding: 2.5rem;
    border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
      display: flex;
  flex-direction: column;
}

.form-group label {
	font-weight: 600;
  color: var(--text-dark);
   margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius    :       6px;
   font-size: 1rem;
   font-family: inherit;
  transition: border-color 0.3s ease;
}

.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(82, 183, 136, 0.1);


}

.form-submit {


    width     :  100%;

  padding: 1rem;

  background-color: var(--accent-color);

  color: var(--white);

               border: none;

  border-radius: 6px;

  font-weight: 600;

    font-size: 1rem;

	 cursor: pointer;

   transition: all 0.3s ease;


}

.form-submit:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.main-footer		{
	  background-color: var(--primary-color);
  color: var(--white);
    padding: 3rem 2rem 1rem;


}

.footer-content {
     max-width: 1200px;
    margin: 0 auto 2rem;
  display: grid;
  grid-template-columns   :    auto 1fr 1fr;
          gap:3rem;
  align-items :        start;
}

.footer-logo-section {
   align-items: center;
        display: flex;
	}

.footer-logo {
     height: 86px;
  width: auto;
  filter: brightness(0) invert(1);

}  

.footer-info h4,
.footer-links h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.85);
   margin-bottom: 0.5rem;

}

.footer-nav {
   gap: 0.8rem;
  flex-direction: column;
   display: flex;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
   transition: color 0.3s ease;
  font-size  :    0.95rem;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-bottom{
	text-align: center; 
	  padding-top: 2rem; 
	  border-top: 1px solid rgba(255, 255, 255, 0.2); 
	  color: rgba(255, 255, 255, 0.7); 
	   font-size: 0.9rem;
}  @media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .transformation-section,
    .coaching-focus-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .transformation-content h2,
    .coaching-focus-content h2 {
        text-align: center;
    }

    .conference-cards,
    .collaboration-grid {
        grid-template-columns: 1fr;
    }

    .burger-menu {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero-section,
    .services-preview-section,
    .transformation-section,
    .coaching-focus-section,
    .team-collaboration-section,
    .contact-section {
        padding: 1.5rem;
    }

    .hero-button,
    .cta-button {
        width: 100%;
        text-align: center;
    }

    .navbar-container {
        padding: 0 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);

  color: var(--white);

	 padding    :        4rem 2rem;

  text-align    :  center;
	
}



.services-hero-content h1 {
  color: var(--white);

	  font-size: 2.8rem;

	    margin-bottom: 1rem;
}
/* Auto-generated CSS */


.services-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
   max-width: 700px;
  margin:       0 auto;
}

.services-main-container {
   max-width: 1200px;
  margin    : 0 auto;
  padding: 0 2rem;
}

/* TODO: optimize for mobile */


.service-detailed-card {
   display: grid;
  grid-template-columns   :       1fr 1fr;
  gap: 3rem;
	 align-items: center;
    padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detailed-card:last-child     {
   border-bottom: none;
}

.service-detailed-card.service-alternate {
		 grid-template-columns: 1fr 1fr;
     }

.service-detailed-card.service-alternate .service-detailed-image {
   order: 2;
}

.service-detailed-card.service-alternate .service-detailed-content {
    order: 1;
}

.service-detailed-image img {
	width: 100%;
    height: auto;
    border-radius   :      12px;
  box-shadow: var(--shadow-lg);
}

.service-detailed-content h2 {
	text-align: left;
   margin-bottom: 1rem;
       font-size: 2rem;

}

.service-detailed-content > p 
 {
  font-size: 1.05rem;
   margin-bottom :     2rem;
	line-height: 1.8;
}

/* Typography */

.service-details-list


{
  display: flex;
  flex-direction: column;
    gap: 2rem;
} 

.detail-item {


  background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
  border-left: 4px solid var(--accent-color);


}

.detail-item h4 {


  color: var(--primary-color);
	margin-bottom: 0.8rem;
   font-size: 1rem;
     }

/* Layout styles */

.detail-item ul {
    list-style :        none;
   padding-left  :     0;
}
	/* Animation and transitions */


/* Hack for old browsers */


.detail-item li {
   padding-left: 1.5rem;
     position: relative;
     margin-bottom: 0.6rem;
     color: var(--text-light);
      line-height: 1.6;
}

.detail-item li:before {
  content: "→";
    position    :     absolute;
    left: 0;
  color: var(--accent-color);
  font-weight   : bold; 

}

.detail-item p    {
   margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-comparison-section {
  background-color: var(--light-bg);
		 padding    :       4rem 2rem;
    margin: 3rem 0;

}

.pricing-comparison-section h2   {
   margin-bottom   : 0.5rem;
}

.pricing-description {
  text-align: center;
   max-width: 600px;
   margin     :       0 auto 3rem;
    font-size: 1.05rem;
}

.pricing-grid {
    max-width: 1200px;
    margin:  0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
	 gap: 2rem; 

}

.pricing-card {
  background-color: var(--white);
    padding: 2.5rem 2rem;
  border-radius     : 12px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent-color);
   transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  color: var(--primary-color);
               margin-bottom: 1rem;
  font-size   :       1.4rem;
}

.price-value {
   font-size: 1.8rem;
  color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-features {
			 list-style: none;
   padding: 0;
  display: flex;
  flex-direction   :  column;
  gap: 1rem; 


}

.pricing-features li {
   padding-left: 1.5rem;
    position: relative;
  color: var(--text-light);
  line-height :       1.6;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
    left: 0;
  color: var(--accent-color);
          font-weight     :    bold;
   font-size: 1.1rem;
}
/* FIXME: IE11 compatibility */


	/* Colors and backgrounds */


.pricing-card.professional {
	border-top-color: #f39c12;
	  transform: scale(1.05);
}

.pricing-card.professional h3		{
   color: #e67e22;
}

.pricing-card.enterprise {
  border-top-color: #9b59b6;
}

.pricing-card.enterprise h3 {
    color: #8e44ad;

}

.why-choose-section  
  {
	max-width: 1200px;
  margin: 0 auto;
   padding :  4rem 2rem;
	
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
   margin-top: 2rem;
}

.why-card {
  background-color: var(--light-bg);
   padding: 2rem;
  border-radius: 8px;
    text-align:      center;
  transition: all 0.3s ease;
}

.why-card:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.why-card p {
	  margin: 0;
  color: var(--text-light);
  font-size    :        0.95rem; 

     }

.faq-services-section {
  background-color: var(--light-bg);
     padding: 4rem 2rem;
}

/* Colors and backgrounds */
/* NOTE: keep for legacy support */


/* State modifiers */

.faq-services-section h2 {
  margin-bottom: 2rem;

}
/* Generated styles */


.faq-container		{
	max-width   :        900px;
    margin: 0 auto;
  display :        flex;
   flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: var(--white);
  padding: 1.5rem;
    border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  box-shadow: var(--shadow-sm);
   transition: all 0.3s ease;
   cursor: pointer;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);


}

.faq-question {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
			font-size: 1.05rem;

}

.faq-answer     {

  color: var(--text-light);
  margin     :      0;
	font-size: 0.95rem;
     line-height: 1.7; 
	


}

.cta-services-section   {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
   margin: 2rem 0;
}

.cta-services-section h2 {
	  color: var(--white);
       margin-bottom: 1rem;


}

.cta-services-section p {

	  color: rgba(255, 255, 255, 0.9);
   max-width: 600px;
  margin: 0 auto 2rem;
   font-size: 1.1rem;
}

.cta-services-button
{
    display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
	padding: 1rem 2.5rem;
	border-radius: 8px;
  font-weight: 600;
	transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
	
}

.cta-services-button:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.thankyou-container {
	max-width: 1200px;
 margin: 0 auto;
    padding:      4rem 2rem;
	 display: grid;
   grid-template-columns: 1fr 350px;
	 gap: 3rem;
}

.thankyou-content {
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.05), rgba(45, 106, 79, 0.05));
	  padding: 3rem;
	   border-radius: 12px;
	  border: 2px solid var(--border-color);
}
	/* TODO: optimize for mobile */
	/* Typography */

/* Cross-browser fix */
.success-icon {
	width: 80px;
   height: 80px;
  background-color: var(--accent-color);
  color: var(--white);
    border-radius: 50%;
    display :     flex;
	align-items: center;
	justify-content: center;
                    font-size: 3rem;
                    font-weight  : bold;
    margin: 0 auto 1.5rem;
	
}

.thankyou-content h1 {
  color: var(--primary-color);
	  text-align: center;
	    margin-bottom: 1rem;
	    font-size: 2.2rem;
	
}

.thankyou-message {
       text-align: center;
  font-size     :  1.05rem;
    margin-bottom: 2rem;
  color: var(--text-light);}

.thankyou-info-box {
  background-color: var(--white);
    padding: 2rem;
   border-radius: 8px;
  margin-bottom :  2rem;
  box-shadow: var(--shadow-sm);
}

.thankyou-info-box h3 {
  color: var(--primary-color); 
  margin-bottom: 1.5rem;
}

.info-steps {
    flex-direction :    column;
  display: flex;
   gap: 1.5rem;
}

.step-item

{
	display: grid;
   grid-template-columns: 50px 1fr;
	 gap:  1rem;
   align-items: start;
}

.step-number {
   width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--white);
   border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content     :     center;
        font-weight    :    bold;
   font-size: 1.2rem;
}

.step-content h4 {
  color: var(--primary-color);
   margin-bottom: 0.3rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
	/* Utility classes */

.thankyou-additional-info {


  background-color: var(--light-bg);
    padding: 1.5rem;
  border-radius: 8px;
	margin-bottom: 2rem;
     }

.thankyou-additional-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.thankyou-additional-info p {
   margin-bottom: 0.8rem;
    font-size: 0.95rem;
  color: var(--text-light);
}

.thankyou-additional-info a {
  color: var(--accent-color);
  text-decoration    :        none;
  font-weight: 600;
 transition: color 0.3s ease;
}

.thankyou-additional-info a:hover
{
  color: var(--secondary-color);
   text-decoration: underline;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
   justify-content: center;
}

.thankyou-button {
                    display: inline-block;
  padding: 1rem 2rem;
    border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
   text-align: center;
}

.thankyou-button.primary {
  background-color: var(--accent-color); 
  color: var(--white); 
  box-shadow: var(--shadow-md);
}

.thankyou-button.primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.thankyou-button.secondary {
  background-color: var(--white);

	  color: var(--accent-color);

	  border: 2px solid var(--accent-color);
}
	/* Framework override */


	/* Vendor-specific */
.thankyou-button.secondary:hover {
  background-color: var(--light-bg);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.thankyou-sidebar {
   display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background-color: var(--light-bg);
    padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {

	  color: var(--primary-color);
   margin-bottom: 0.8rem;
    font-size: 0.95rem;
     }

.sidebar-card p {
   margin: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-light);

}

.next-steps-section {
  background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.next-steps-section h2  {
    margin-bottom: 2rem; 
	
}

.next-steps-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
   gap: 1.5rem;
  display: grid;
      max-width: 1200px;
}

/* Debug styles */

.next-step-card {
     background-color: var(--white);
     padding: 1.5rem;
       border-radius: 8px;
       text-align: center;
     box-shadow: var(--shadow-sm);
                  transition: all 0.3s ease;
	}

.next-step-card:hover {
  transform: translateY(-4px);
	  box-shadow: var(--shadow-md); 
	
}

.next-step-card h3  {
     color: var(--primary-color);
  margin-bottom: 0.8rem;
   font-size: 1rem;

}

.next-step-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .service-detailed-card.service-alternate .service-detailed-image {
        order: 1;
    }

    .service-detailed-card.service-alternate .service-detailed-content {
        order: 2;
    }

    .service-detailed-content h2 {
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.professional {
        transform: scale(1);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .next-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button {
        width: 100%;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .service-details-list {
        gap: 1rem;
    }

    .detail-item {
        padding: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        grid-template-columns: 40px 1fr;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .thankyou-info-box {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding   :3.5rem 2rem;
   text-align: center;
}

.about-hero-content h1 {
  color: var(--white); 
  font-size: 2.5rem; 
	margin-bottom: 0.8rem;
}


.about-hero-content p {
  color: rgba(255, 255, 255, 0.9); 
  font-size: 1.05rem; 
  max-width: 600px; 
    margin: 0 auto;
}

.about-main-content 
 {
  max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
} 

.about-intro {

	  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0;}

.about-text-block {
               line-height: 1.9;
}

.about-text-block h2

{
  margin-bottom: 1.5rem;
  font-size: 2rem;
   text-align: left;
}

.about-text-block p {
	  font-size: 1rem;
  color: var(--text-light);
    margin-bottom: 1.3rem;
         line-height    :        1.8;
    text-align: justify;


}

.about-image img {
	width: 100%;
   height: auto;
	border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 2rem;
   padding: 3rem 0;
  margin :2rem 0;

}


.mission-block,
.vision-block {

	  background-color: var(--light-bg);
	padding:  2.5rem;
    border-radius: 8px;
  border-left: 5px solid var(--accent-color);
     }

.mission-block h3,
.vision-block h3 {
  color: var(--primary-color);
   margin-bottom: 1rem;
         font-size: 1.4rem;
}

.mission-block p,
.vision-block p {
  margin: 0;
  color: var(--text-light);
    line-height: 1.8;
  font-size: 1rem;
	 text-align: justify;
}

.about-values {
    padding: 3.5rem 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}



.about-values h2 {
  margin-bottom: 2rem;


     }

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  background-color: var(--white);
   padding: 1.8rem;
 border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-item h4 {
     color: var(--primary-color);
   margin-bottom: 0.8rem;
				 font-size: 1.1rem;
	}

.value-item p   {
   margin: 0;
  color: var(--text-light);
   font-size: 0.95rem;
  line-height: 1.7;
}

.about-stats {
  background: linear-gradient(135deg, #f1f5f3 0%, #e8f3ed 100%);
  padding: 3.5rem 0;
   margin: 2.5rem 0;
}

.about-stats h2 {
    margin-bottom: 2.5rem;
}

.stats-grid {
	 display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap:  2rem;
}

.stat-card {
  background-color: var(--white);
   padding: 2rem;
  text-align: center;
   border-radius: 8px;
  box-shadow: var(--shadow-md);
    transition    :    all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-number {

    font-size: 2.5rem;
   font-weight:        700;
  color: var(--accent-color);
                    margin-bottom: 0.5rem;
	}

.stat-label {

  font-size: 0.95rem;
  color: var(--text-light);
      font-weight: 500;


}

.about-why	{

    padding: 3.5rem 0;
}

.about-why h2 {


  margin-bottom: 1.5rem;

}

.why-content > p {
    font-size:   1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
         line-height: 1.8;
}

.why-reasons {
    display   : grid;
  grid-template-columns: repeat(2, 1fr);
                    gap :        2rem;
}

.reason-block {
  background-color: var(--light-bg);
   padding: 1.8rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.reason-block h4 {
  color: var(--primary-color);
   margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.reason-block p {
   margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
    line-height: 1.7;
}

.about-story {
  padding: 3.5rem 0;
  background-color: var(--white);
}

.about-story h2 {
   margin-bottom: 2rem;
}

.about-story p  {
     font-size     :    1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
	line-height: 1.9;
   text-align: justify; 
}

.about-call-to-action {

  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 3rem 2rem;
   text-align     :       center;
	border-radius: 12px;
 margin: 3rem 0;
	}

.about-call-to-action h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.about-call-to-action p {

  color: rgba(255, 255, 255, 0.9);
	max-width: 700px;
    margin: 0 auto 2rem;
   font-size: 1.05rem;}

.about-cta-button {
   display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
    padding :  1rem 2.5rem;
    border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-cta-button:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .about-text-block h2 {
        text-align: center;
    }

    .about-text-block p {
        text-align: left;
    }

    .about-mission-vision {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .values-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-reasons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-story {
        padding: 2rem 0;
    }

    .about-story p {
        text-align: left;
    }

    .about-call-to-action {
        padding: 2rem;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.4rem;
    }

    .about-hero {
        padding: 2rem;
    }

    .about-text-block {
        padding: 0;
    }

    .about-text-block p {
        font-size: 0.95rem;
    }

    .mission-block,
    .vision-block {
        padding: 1.5rem;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-item {
        padding: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .reason-block {
        padding: 1.2rem;
    }

    .reason-block h4 {
        font-size: 0.95rem;
    }

    .reason-block p {
        font-size: 0.85rem;
    }

    .about-story h2 {
        font-size: 1.6rem;
    }

    .about-story p {
        font-size: 0.9rem;
    }

    .about-call-to-action {
        padding: 1.5rem;
    }

    .about-call-to-action h2 {
        font-size: 1.4rem;
    }

    .about-call-to-action p {
        font-size: 0.95rem;
    }
}.policy-section  
  {
    padding    :      4rem 2rem;
  background: var(--light-bg);
  min-height: calc(100vh - 200px);


}

.policy-container {

		 max-width: 900px;
    margin: 0 auto;
  text-align: left;
     }

.policy-container h1 {
  font-size :2.8rem;
  color: var(--primary-color);
	margin-bottom: 2rem;
    font-weight: 700;
}

.policy-container h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
     margin-top :   2rem;
  margin-bottom :1rem;
  font-weight    :   600;
	line-height: 1.3;
}

.policy-container p {

  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
    font-size: 1rem;
    text-align: justify;


}

.policy-container strong {
     color: var(--primary-color);
   font-weight: 600;}@media (max-width: 768px) {
    .policy-section {
        padding: 2.5rem 1.5rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        text-align: left;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}