* {
  margin: 0;
  padding     :       0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
	
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
     color: var(--text-dark);
       background-color: #ffffff;
       line-height: 1.6;
           overflow-x    :       hidden;
}  

.navbar {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f35 100%);
   padding: 1rem 0;
    position:     sticky;
   top: 0;
   z-index: 999;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-container {
	 display: flex;
  padding: 0 2rem;
	align-items: center;
   max-width: 1200px;
	 justify-content: space-between;
   margin: 0 auto;
}

.navbar-logo-section {
   flex-shrink: 0;
}

.navbar-logo {
   height   : 64px;
   width: auto;
	 display: block;
  filter: brightness(0) invert(1);
}  

.navbar-toggle {
    display: none;
	flex-direction: column;
   cursor: pointer;
  gap: 6px;
}

.hamburger-line {
   width     :    28px;
  height: 3px;
   background-color: white;
    border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggle.active .hamburger-line:nth-child(1)     {
  transform: rotate(45deg) translate(10px, 10px);
}

.navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;}

.navbar-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-menu {
     display: flex; 
				list-style: none; 
	  gap    :      2rem;
} 

.navbar-item{
	 position: relative;
}

.navbar-link {
    color: #e2e8f0;
  text-decoration: none;
    font-weight: 500;
   font-size: 1rem;
	transition: all 0.3s ease;
  position: relative;
   padding-bottom: 0.5rem;
}

.navbar-link::after {
  content: '';
    position   :absolute;
   bottom: 0;
   left: 0;
    width: 0;
  height:2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition:   width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

.hero {
    max-width: 1400px;
   margin: 0 auto;
      padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.hero-content {
  display: flex;
               flex-direction: column;
   gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
   font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  line-height: 1.2; 

}

.hero-subtitle {
  font-size: 1.25rem;
	  color: var(--text-light);
	    max-width: 500px;
}

.hero-button{
   display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
   padding: 1rem 2rem;
	 border-radius:   50px;
  text-decoration: none;
    font-weight: 600;
   font-size    :        1.05rem;
  transition: all 0.3s ease;
   width: fit-content;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}  

.hero-button:hover
{
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.hero-image-container {
   position: relative;
}

.hero-image {
    width: 100%;
   height: auto;
   border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
   animation   :        float 3s ease-in-out infinite;
}@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}.benefits-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdff 100%);
  padding: 5rem 2rem;
}

.benefits-container {
               max-width: 1200px;
       margin: 0 auto;
} 

.section-title {
                    font-size:      2.5rem;
   font-weight: 800;
   text-align: center;
    margin-bottom: 3rem;
  color: var(--dark-bg);
}

.benefits-grid

{

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap    :      2rem;
     }

.benefit-card {
   background: white;
  padding: 2rem;
    border-radius    :       16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.benefit-card:hover  {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15); 

}

.benefit-title {
    font-size     :1.3rem;
    font-weight: 700;
  margin-bottom   :  1rem;
  color: var(--primary-color);
}

.benefit-text  
  {
     font-size: 1rem;
  color: var(--text-light);
   line-height: 1.7;
	}



.coaching-services {
   padding: 5rem 2rem;
    background: white;
}

.services-wrapper		{
  gap: 4rem;
   max-width: 1200px;
    margin: 0 auto;
    display: flex;
   flex-direction: column;
}

.service-item {
       display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
     }

.service-item.reverse	{
   direction: rtl;
}

.service-item.reverse > * {
     direction: ltr;

}

.service-image

{
   width: 100%;
    height:        auto;
   border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); 
	
}

.service-content {
   padding: 1rem 0;
}

.service-title {
   font-size: 2rem;
    font-weight: 800;
    margin-bottom  :     1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   background-clip: text;
	
}

.service-description {
	 font-size: 1.1rem;
  color: var(--text-light);
	line-height: 1.8;
}

.workshops-section	{
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f35 100%);
    padding :        5rem 2rem;
   color: white; 

}

.workshops-container {
  max-width: 1200px;
	 margin: 0 auto;
}

.section-subtitle {

  text-align: center;
   font-size: 1.2rem;
    color: #cbd5e1;
       margin-bottom: 3rem;}

.workshops-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

		gap: 2rem;
}

.workshop-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
    overflow: hidden;
  transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-12px);
     border-color: var(--accent-color);
     background: rgba(255, 255, 255, 0.15);
}

.workshop-image {
    height: 250px;
		width: 100%;
	object-fit: cover;


}

.workshop-title {

	  font-size: 1.3rem;

  font-weight: 700;

   padding: 1.5rem 1.5rem 0.5rem;

   color: #f0f9ff;
} 

.workshop-text {
	padding: 0.5rem 1.5rem 1.5rem;
	 color: #cbd5e1;
  font-size: 1rem;
  line-height   :  1.6;
}

.consultation-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
   padding: 5rem 2rem;
}

.consultation-container 
 {
	    max-width: 1000px;
   margin: 0 auto;
   text-align: center;}

.consultation-title {
    font-size: 2.3rem;
               font-weight: 800;
   margin-bottom: 1rem;
  color: var(--primary-color);


}

.consultation-text   {
   font-size :       1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.consultation-features {
 display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
       margin-bottom: 2rem; 
	
}

.feature {
    background: white;
      padding: 2rem;
       border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
}

.feature:hover     {


  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);


}

.feature-label {
	 display     :      block;
   font-size   :     1.2rem;
	font-weight: 700;
  color: var(--secondary-color);
   margin-bottom: 0.8rem;
}

.feature p {

	  color: var(--text-light);
  font-size: 1rem;}

.consultation-button {
    display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
    font-weight  :  600;
   font-size: 1.05rem;
   transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3); 

}

.consultation-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.testimonials-section {
   padding   :      5rem 2rem; 
   background: white;
} 

.testimonials-container {
   max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
	 display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
	
}

.testimonial-card	{
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdff 100%);
   padding: 2rem;
    border-radius: 16px;
  border-left: 5px solid var(--accent-color);
    transition   :all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text  {
   font-size: 1.05rem;
  color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
   line-height: 1.8;


}  

.testimonial-author {


  font-size: 1rem; 
	        font-weight: 700; 
	  color: var(--primary-color);
	}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 2rem;
               text-align: center;
    color: white;
}

.cta-wrapper {
               max-width: 800px;
    margin: 0 auto;
}

.cta-title {
   font-size   :      2.5rem;

	    font-weight: 800;

		margin-bottom: 1rem;
}



.cta-subtitle {
   font-size: 1.2rem;
    margin-bottom: 2rem;
  opacity: 0.95;
    line-height: 1.7;
}

.cta-button {
  display: inline-block;
    background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
   border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
    font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);


}

.cta-button:hover {
  transform: translateY(-4px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-section {
      background: #f8fafc;
    padding: 5rem 2rem;
}

.contact-container {
      max-width: 1000px;
   margin: 0 auto;
}

.contact-title {
    font-size: 2.3rem;
	font-weight: 800;
	text-align     :  center;
   margin-bottom: 3rem;
  color: var(--primary-color);
}

.contact-wrapper


{
   display    :    grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
   background: white;
	 padding: 2rem;
    border-radius   :    16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-title  
  {
  font-size: 1.5rem;
   font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.contact-detail {
   font-size: 1.05rem;
    margin-bottom: 1rem;
  color: var(--text-dark);
    line-height: 1.8;
}

.contact-form {
  background: white;
          padding: 2rem;
  border-radius    : 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
       margin-bottom:    1.5rem;
     }

.form-input,
.form-textarea
{
   width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border-color);
    border-radius: 8px;
	font-size: 1rem;
   font-family: inherit;
    transition    :      all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
         outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-textarea {
    resize: vertical; 
	
}

.form-button {
   width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   color: white;
                    border: none;
     border-radius: 8px;
    font-size: 1.05rem;
   font-weight: 700;
   cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.form-button:hover {

  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);} 

.form-button:active {
  transform: translateY(0);
}

.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f35 100%);
   color: #cbd5e1;
     padding: 3rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px; 
	   margin: 0 auto; 
	  display: grid; 
	  grid-template-columns: auto 1fr; 
	   gap    :   3rem; 
	   margin-bottom: 2rem;
}

.footer-logo-section {
   flex-shrink: 0;
}

.footer-logo {
    height: 86px;
    width: auto;
   display    :block;
  filter: brightness(0) invert(1);
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.footer-column {
  padding: 0.5rem 0;
}

.footer-heading {
	font-size: 1.1rem;
   font-weight: 700;
  color: white;
	margin-bottom: 1rem;
}

.footer-links {
                    list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
	
}

.footer-links a {
       font-size: 1rem;
  text-decoration: none;
   color: #cbd5e1;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer-text {
	font-size: 1rem;
   color: #cbd5e1;
  margin-bottom: 0.8rem;
	line-height    :        1.6;
}  

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
  color   :  #94a3b8;

   font-size: 0.95rem;
}@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--dark-bg);
        padding: 2rem;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-item {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .service-item.reverse > * {
        direction: ltr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .consultation-title {
        font-size: 1.8rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
         padding: 4rem 2rem;
  text-align: center;
   color: white;
} 

.services-hero-content {
   max-width     :    800px;
   margin :  0 auto;
}

.services-hero-title {
   margin-bottom: 1rem;
   font-size: 3rem;
    font-weight: 800;
}

.services-hero-subtitle {
  font-size: 1.3rem;
	   opacity: 0.95;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
   padding  :  0 2rem;
}

.individual-coaching-section {
    padding     : 5rem 2rem;
  background: white;
}

.coaching-item {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
     align-items: center;
}

.coaching-item.reverse {
      direction: rtl;
}

.coaching-item.reverse > * {
  direction: ltr;
}

.coaching-image-wrapper

{
  position: relative;
}

.coaching-image {
                    width: 100%;
  height: auto;
	border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.coaching-details {
  gap: 1.5rem;
  flex-direction  : column;
    display: flex;
}

.coaching-title {
   font-size: 2.2rem;
    font-weight     :      800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
}

.coaching-description {
    font-size :       1.1rem;
  color: var(--text-light);
        line-height: 1.8;
}

.coaching-features {
    display: flex;
   flex-direction: column;
	gap: 0.8rem;
}

.feature-item {
  display: flex;
   align-items: center;
    gap    :      1rem;
  font-size: 1rem;
  color: var(--text-dark);
	
}

.feature-icon-text {
  display: flex;
  align-items    :   center;
    justify-content: center;
  min-width: 24px;
	 height    :    24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
    border-radius: 50%;
  font-weight:      700;
      font-size    :       0.9rem;
}

.pricing-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdff 100%);
   padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
 margin-top    :       0.5rem;
}

.pricing-label {
   font-size: 0.95rem;
  color: var(--text-light);
   margin-bottom: 0.5rem;
}

.pricing-value {
       font-size: 2rem;

	    font-weight: 800;

	  color: var(--primary-color);

	    margin-bottom    :       0.5rem;
}

.pricing-note {
   font-size: 0.9rem;
     color: var(--text-light);
}

.mentoring-program-section {
      padding     :       5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}


.section-title-services {
  font-size: 2.5rem;
   font-weight    : 800;
   text-align: center;
    margin-bottom   :   3rem;
  color: var(--primary-color);
}

.workshops-training-section {
  padding: 5rem 2rem;
  background :   white;
}

.workshops-full-grid

{
	    display: grid;
    grid-template-columns:       1fr;
	gap: 3rem;
}

.workshop-full-card


{
    display :grid;
   grid-template-columns: 1fr 1fr;
    gap: 2rem;
  align-items: center;
   background: #f8fafc;
   padding: 2rem;
   border-radius: 16px;
   transition: all 0.3s ease;
}

.workshop-full-card:hover		{
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.workshop-full-image {
  width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.workshop-full-content {
    flex-direction :column;
  display: flex;
   gap: 1rem;
}

.workshop-full-title {
   font-size: 1.6rem;
    font-weight: 800;
  color: var(--primary-color);
}

.workshop-full-description {
  font-size: 1.05rem;
  color: var(--text-light);
      line-height: 1.7;
}

.workshop-list {
	 list-style: none;
   display: flex;
      flex-direction: column;
	 gap: 0.6rem;
   margin: 0.5rem 0;


}

.workshop-list li {
  font-size     :   1rem;
  color: var(--text-dark);
  padding-left     : 1.5rem;
   position :     relative;
}

.workshop-list li::before   {
  content: "→";
   position: absolute;
   left: 0;
  color: var(--accent-color);
    font-weight: 700;
}

.workshop-duration {
   font-size: 0.95rem;
  color: var(--text-light);
    font-style: italic;
   margin-top: 0.5rem;

}

.conferences-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdff 100%);
}

.conferences-intro		{
 text-align: center;
    font-size: 1.1rem;
  color: var(--text-light);
	margin-bottom: 2.5rem;
   max-width: 700px;
    margin-left: auto;
  margin-right: auto;
}

.conferences-grid
{
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.conference-item  {
    background: white;
    padding: 2rem;
   border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.conference-item:hover 
 {

	  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15); 
	}

.conference-title {
   font-size: 1.4rem; 
	    font-weight: 700; 
	  color: var(--secondary-color); 
	   margin-bottom: 1rem; 
	
}

.conference-text {
   font-size  :      1rem;
  color: var(--text-light);
   line-height: 1.7;
   margin-bottom: 1.5rem;
}

.conference-info {
   display: flex;
    flex-direction   :  column;
    gap: 0.8rem;
        padding: 1rem;
                    background: #f8fafc;
    border-radius: 8px;
}

.conference-info p {
   font-size  :    0.95rem;
  color: var(--text-dark);
}

.conference-price {
    font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
        margin-top: 0.5rem;
}

.packages-section


{
  padding: 5rem 2rem;
        background: white;
}

.packages-intro {
   text-align: center;
    font-size: 1.1rem;
  color: var(--text-light);
    margin-bottom: 2.5rem;
}

.packages-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.package-card {
	background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
   position: relative;
    transition: all 0.3s ease;
   display: flex;
               flex-direction: column;
}

.package-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	}



.package-card.professional {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.package-card.premium {
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdff 100%);
}

.package-badge {
         position    :        absolute;
 top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
   font-size: 0.85rem;
    font-weight: 700;
}

.package-name {
  font-size: 1.6rem;
    font-weight: 800;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
                    margin-top: 0;
}

.package-price {
    font-size    :   2.2rem;
  font-weight: 800;
  color: var(--secondary-color);
         margin-bottom: 0.3rem;
}


.package-duration {
    font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
	}

.package-features {
    flex-direction: column;
  display: flex;
    list-style: none;
	gap: 0.8rem;
  flex-grow: 1;
   margin-bottom: 1.5rem;
}

.package-features li  
  {
   font-size :       1rem;
  color: var(--text-dark);
       padding-left: 1.5rem;
    position : relative;
} 

.package-features li::before {
  content: "✓";
   position:      absolute;
   left     : 0;
  color: var(--accent-color);
    font-weight: 700;
   font-size: 1.1rem;
}

.package-button {
    display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
   padding: 0.9rem 1.5rem;
	 border-radius: 8px;
          text-decoration: none;
    font-weight: 600;
   text-align: center;
  transition: all 0.3s ease;
}

.package-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);


}

.faq-section	{
    padding  :   5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
      padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover


{
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); 

}

.faq-question {
                    font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
               line-height: 1.5;
}

.faq-answer {
	 font-size:       1rem;
  color: var(--text-light);
   line-height: 1.7;
}

.cta-section-services {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   padding  :   4rem 2rem;
                    text-align: center;
				 color: white;
}

.cta-wrapper-services {
	   max-width: 700px;
 margin: 0 auto;}

.cta-title-services


{
    font-size: 2.3rem; 
		font-weight    :       800; 
	  margin-bottom: 1rem;
}

.cta-subtitle-services {
			font-size: 1.1rem;
    opacity: 0.95;
   margin-bottom: 2rem;
   line-height: 1.7;
     }

.cta-button-services {


               display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
    border-radius: 50px;
      text-decoration: none;
  font-weight:    700;
   font-size :  1.05rem;
   transition   : all 0.3s ease;}

.cta-button-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdff 100%);
     min-height: 70vh;
	display: flex;
    align-items     :   center;
}

.thankyou-container {
   max-width: 1000px;
   margin   :     0 auto;
     width: 100%;
   display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.thankyou-content {
    background: white; 
               padding: 3rem; 
    border-radius: 20px; 
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-badge    {
  display    :   flex;
   align-items: center;
  justify-content :      center;
  width     :   80px;
	 height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
   animation: successBounce 0.6s ease-out;
} @keyframes successBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}.success-icon		{
	color: white; 
  font-size: 3rem; 
  font-weight  :        800;
}

.thankyou-title {
  font-size: 2.5rem;
   font-weight: 800;
   text-align: center;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
   	text-align: center;
   font-size: 1.3rem;
  color: var(--text-light);
       margin-bottom: 1.5rem;
}

.thankyou-message {
   font-size   :   1.05rem;

	  color: var(--text-dark);

	         line-height: 1.8;

	  margin-bottom: 2rem;

		text-align: center;

}

.thankyou-info-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdff 100%);
    padding: 1.5rem;
    border-radius: 12px;
  border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
}

.info-box-title {
        font-size: 1.2rem;
    font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-box-list {
    list-style: none;
    display: flex;
       flex-direction: column;
   gap: 0.8rem;
}


.info-box-list li {
	 font-size: 1rem;
  color: var(--text-dark);
  padding-left: 1.5rem;
     position: relative;
	line-height: 1.6;
}


.info-box-list li::before {
  content: "→";
    position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight :       700;
}

.thankyou-contact-info {
    background: white;
	padding: 1.5rem;
    border-radius: 12px;
  border: 1px solid var(--border-color);
    margin-bottom    :   2rem;
}

.contact-info-heading {
   font-size: 1.1rem;
	font-weight: 700;
  color: var(--secondary-color);
   margin-bottom: 0.8rem;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--text-dark);
    line-height: 1.8;
}

.thankyou-cta-buttons {
   display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.thankyou-button {
    -ms-flex: 1;
    -webkit-flex   :     1;
   -moz-border-radius: 8px;
  flex: 1;
   min-width: 200px;
    padding    :        1rem;
    border-radius: 8px;
  text-decoration: none;
    font-weight   :  600;
   text-align: center;
	 transition: all 0.3s ease;
  font-size: 1rem;
}

.thankyou-button.primary  
  {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}  

.thankyou-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.thankyou-button.secondary  
  {
	background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.thankyou-button.secondary:hover {
  background: var(--primary-color);
   color     :     white;
}

.thankyou-sidebar     {

  flex-direction: column;

 display: flex;

   gap: 1.5rem;
	}

.sidebar-feature {
    background  :  white;
   padding: 1.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}


.feature-number     {
   display: flex;
    align-items: center;
  justify-content   :      center;
    width: 40px;
   height   :    40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   color: white;
   border-radius: 50%;
    font-weight: 800;
  font-size: 1.2rem;
   margin: 0 auto 0.8rem;
}

.feature-title {
    font-size: 1.05rem;
  font-weight :700;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.testimonials-thankyou {
    padding: 3rem 2rem;
   background: white; 

}

.testimonials-carousel		{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
   max-width: 1200px;
  margin: 0 auto;
}

.testimonial-thankyou		{

	  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdff 100%);

		padding :       1.8rem;

	  border-radius: 12px;

	  border-left: 4px solid var(--accent-color);

	    transition: all 0.3s ease;
     }

.testimonial-thankyou:hover {
  transform: translateY(-4px); 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text	{
    font-size: 1rem; 
	  color: var(--text-dark); 
	    line-height: 1.7; 
	      margin-bottom: 1rem; 
	    font-style: italic;
}

.testimonial-author {

      font-size: 0.95rem;
   font-weight     :     600;
  color: var(--primary-color);}@media (max-width: 968px) {
    .coaching-item,
    .coaching-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .coaching-item.reverse > * {
        direction: ltr;
    }

    .workshop-full-card {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .coaching-title {
        font-size: 1.6rem;
    }

    .section-title-services {
        font-size: 1.8rem;
    }

    .cta-title-services {
        font-size: 1.8rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-cta-buttons {
        flex-direction: column;
    }

    .thankyou-button {
        min-width: 100%;
    }

    .conferences-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.professional {
        transform: scale(1);
    }

    .workshop-list,
    .package-features,
    .info-box-list {
        gap: 0.6rem;
    }
}.policy-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdff 100%);
  min-height: calc(100vh - 250px);
}

.policy-container {
  max-width: 900px;
               margin     :   0 auto;
  text-align: left;
}

.policy-main-title {
	font-size: 3rem;
    font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 3rem;
    text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	 background-clip: text;
	 line-height: 1.2;
}

.policy-content {
         background: white;

	padding: 3rem;

    border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.policy-content h2 {
    font-size: 1.8rem;
	 font-weight: 800;
  color: var(--primary-color);
   margin-top: 2rem;
   margin-bottom: 1rem;
   padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--accent-color);
}


.policy-content h2:first-child {
   margin-top: 0;
}

.policy-content p {
   font-size: 1.05rem;
  color: var(--text-light);
   line-height: 1.9;
  margin-bottom  :       1.5rem;
  text-align: justify;
}

.policy-content p:last-child {
	  margin-bottom: 0;
	}

.policy-content h2:hover {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}  

.policy-content ul,
.policy-content ol {
   margin: 1.5rem 0;
	   padding-left: 2rem;
	  color: var(--text-light);
}

.policy-content li {
  margin-bottom:       0.8rem;
   line-height: 1.8;
    font-size   : 1.05rem;
}

.policy-content li::marker {
  color: var(--accent-color);
   font-weight: 600;
}
@media (max-width: 1024px) {
    .policy-container {
        padding: 0 1rem;
    }

    .policy-content {
        padding: 2.5rem;
    }

    .policy-main-title {
        font-size: 2.5rem;
    }

    .policy-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .policy-content {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .policy-content h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .policy-content ul,
    .policy-content ol {
        padding-left: 1.5rem;
    }

    .policy-content li {
        font-size: 1rem;
    }
}@media (max-width: 480px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-main-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policy-content {
        padding: 1rem;
    }

    .policy-content h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    .policy-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}.policy-content a
	{
  color: var(--primary-color);
	 text-decoration: none;
  border-bottom     :        2px solid transparent;
       transition: all 0.3s ease;
}

.policy-content a:hover

{
  border-bottom-color: var(--accent-color);


}

.policy-content a:focus    {
  outline: 2px solid var(--primary-color);
   outline-offset: 2px;
       border-radius: 2px;
}@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policy-section {
        padding: 0;
        background: white;
    }

    .policy-content {
        box-shadow: none;
        padding: 0;
    }

    .policy-content h2 {
        page-break-after: avoid;
        margin-top: 1.5rem;
    }

    .policy-content p {
        orphans: 3;
        widows: 3;
    }
}