* {
   margin: 0;
   padding: 0;
  box-sizing: border-box;
}



html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
        color: #2c3e50;
   background: #ffffff;
}

.navbar
{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding :    1rem 2rem;
  position: sticky;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
    display: flex;
  justify-content: space-between;
   align-items: center;
}

.nav-logo img {
    height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
    display     :     flex;
  list-style: none;
   gap     :        2rem;
     }

.nav-menu a {
  color: #ecf0f1;
  text-decoration: none;
    transition: color 0.3s ease;
	 font-size: 1rem;
	font-weight :      500;
}

.nav-menu a:hover {
  color: #3498db;
}

.burger-menu {
  display: none;
   flex-direction:  column;
   background: none;
   border: none;
    cursor: pointer;
    gap: 5px;
}

.burger-line {
   width: 25px;
          height: 3px;
  background: #ecf0f1;
   border-radius: 2px;
   transition: all 0.3s ease;
}

.hero {


    display: flex;
   align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  max-width: 1200px;
  margin   :  0 auto;
    gap: 40px;
     }



.hero-content {
  flex: 1;
}

.hero h1		{
    font-size     :        3rem;
  color: #2c3e50;
	 margin-bottom: 1.5rem;
    line-height: 1.2;
  font-weight: 700;
}

.hero p {
   font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
   line-height: 1.8; 
	
}

.hero-visual {
    flex: 1;
  overflow: hidden;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-image {
       width    : 100%;
    height: auto;
    display: block;
	object-fit: cover;
}  

.cta-button

{
    display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
               color: white;
    padding :   12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  border: none;
    cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4); 

}

.cta-button-large {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color    :   white;
  padding: 16px 48px;
    border-radius: 10px;
  text-decoration     :  none;
               font-weight: 600;
   font-size    :1.1rem;
    transition: all 0.3s ease;
   border: none;
    cursor: pointer; 

}

.cta-button-large:hover {

  transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
	

}

.services-overview    {
    padding: 80px 40px;
	background: #f8f9fa;
}

.section-header {
   max-width: 1200px;
   margin: 0 auto 50px;
    text-align: center;
}

.section-header h2 {
               font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 1rem;
    font-weight: 700;
     }

.section-header p {
    max-width: 600px;
       margin: 0 auto;
     color: #7f8c8d;
   	font-size: 1.1rem;
}  

.services-grid {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
   background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
   display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image{
  width: 100%;
   height: 220px;
       object-fit: cover;
}

.service-card h3 {
   font-size: 1.5rem;
    color: #2c3e50;
         padding: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    flex-grow: 1;
    line-height  :1.7;
}

.expertise-section
	{
  padding: 80px 40px;
	max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.expertise-content {
  flex: 1;
}

.expertise-content h2 {
   font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.expertise-content p {
  font-size: 1rem;
   color: #555;
   margin-bottom: 2rem;
       line-height: 1.8;
}

.expertise-list {
  list-style: none;
}

.expertise-list li
	{
    padding: 12px 0;
  color: #2c3e50;
  font-weight: 500;
   padding-left: 30px;
   position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.expertise-list li:before {
  content: "✓";
   position: absolute;
  left: 0;
    color: #27ae60;
    font-weight: bold;
       font-size: 1.2rem;
}

.expertise-image {
  flex: 1;
	border-radius: 15px;
   overflow:       hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  height: auto;
}

.coaching-methods {
	 padding: 80px 40px;
    background: #ecf0f1;
}

.coaching-methods h2 {
   font-size    :    2.5rem;
  text-align: center;
   color: #2c3e50;
   margin-bottom: 50px;
    font-weight: 700;
}

.methods-container {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;


}

.method-card {
      background: white;
    padding: 2rem;
  border-radius:        12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
   transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.method-card h3


{
	color: #2c3e50;
   font-size: 1.3rem;
    margin-bottom: 1rem;
   font-weight: 600;
}

.method-card p {
      color: #666;
    line-height: 1.7;
   font-size: 0.95rem;
     }

.method-number {
  position: absolute;
  top: 20px;
   right: 20px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  width: 50px;
   height: 50px;
  border-radius   :        50%;
    display: flex;
   align-items: center;
   justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.workshops-section {
  max-width: 1200px;
   margin: 0 auto;
  padding: 80px 40px;
}

.workshops-section h2 {
       font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom   :  1rem;
    text-align: center;
    font-weight: 700;}

.section-subtitle {
    text-align: center;
    color : #7f8c8d;
  margin-bottom: 3rem;
       font-size: 1.05rem;
  max-width: 700px;
    margin-left: auto;
  margin-right   :    auto;
}

.workshops-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 30px;
     }

.workshop-item {
	background: white;
				 border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
   display: flex;
    flex-direction: column;
}

.workshop-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.workshop-image {
   width: 100%;
     height: 240px;
     object-fit: cover;
}

.workshop-item h3 {
     font-size: 1.4rem;
   color: #2c3e50;
   padding: 1.5rem 1.5rem 0.5rem;
   font-weight: 600;
}


.workshop-item p {
   padding: 0.5rem 1.5rem;
    color: #666;
   flex-grow: 1;
  line-height: 1.7;
   font-size: 0.95rem;
}

.workshop-badge {
    display: inline-block;
	margin: 1rem 1.5rem;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
   padding: 6px 14px;
   border-radius: 20px;
  font-size: 0.85rem;
  font-weight:600;
    width: fit-content;
}

.client-testimonials {
  padding  : 80px 40px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.client-testimonials h2 {
  font-size: 2.5rem;
  color: white;
  text-align: center;
               margin-bottom: 50px;
  font-weight: 700;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.testimonial-card {
  background: rgba(255,255,255,0.95);
   padding: 2.5rem;
	border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
   transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.testimonial-text {

    color: #2c3e50;
   font-size: 1rem;
   line-height: 1.8;
    margin-bottom: 1.5rem;
	font-style: italic;}

.testimonial-author {
   color: #3498db;
  font-size: 0.95rem;
    font-weight: 600;
}

.market-insights {
    padding: 80px 40px;
    background: #f8f9fa;
}

.market-insights h2 {
	 font-size: 2.5rem;
   color: #2c3e50;
  text-align:center;
  margin-bottom: 50px;
               font-weight: 700;
}

.insights-grid {
   max-width: 1200px;
    margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 30px;
}

.insight-card {
               background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 5px solid #3498db;
  transition: all 0.3s ease;
}

.insight-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.insight-card h3 {
	color: #2c3e50;
   font-size: 1.3rem;
     margin-bottom: 1rem;
   font-weight  :     600;
}

.insight-card p {
   color: #666;
	 line-height: 1.8;
   font-size: 0.95rem;
}

.cta-section {
  padding:80px 40px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.cta-wrapper {

	   max-width: 800px;
  margin: 0 auto;
   text-align: center;

}

.cta-wrapper h2 {
   font-size: 2.5rem;
         color: white;
   margin-bottom: 1.5rem;
    font-weight   :     700;

}  

.cta-wrapper p {
    font-size: 1.1rem;
	  color: rgba(255,255,255,0.95);
	   margin-bottom    :        2rem;
	  line-height: 1.8;
}

.contact


{
    padding: 80px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.contact h2 {
          font-size     :     2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
	 text-align: center;
    font-weight: 700;
     }

.contact-wrapper p {


   margin-bottom: 2.5rem;
   text-align: center;
   font-size: 1rem;
   color: #7f8c8d;
	}

.contact-form {
    display: flex;
  flex-direction: column;
    gap: 1.5rem;
}

.form-group	{
    display: flex;
	flex-direction: column;


}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
  border: 2px solid #ecf0f1;
   border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
  transition    :    all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
         outline: none;

  border-color: #3498db;

  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
	  resize: vertical;
    font-family: inherit;


}

.submit-button {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
   color: white;
   padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
   font-weight:    600;
	 cursor: pointer;
  transition: all 0.3s ease;
  margin-top   :      0.5rem;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); 
	padding: 60px 40px 20px;
}

.footer-container {

	   max-width: 1200px;
	margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
   margin-bottom: 40px;
	}

.footer-logo-section {
    display: flex; 
    align-items: flex-start;
}

.footer-logo {
   height: 80px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   color: #ecf0f1;
}

.footer-address {
   font-size: 0.95rem;
  line-height: 1.8;
     margin-bottom: 1.5rem;
}

.footer-phone {
  font-weight: 500;
   font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
   color: #bdc3c7;
   text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
   color: #3498db;
}

.footer-bottom {
    text-align  :center; 
  padding-top    :  20px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
   color: #95a5a6; 
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        gap: 0;
        padding: 1.5rem 0;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -7px);
    }

    .hero {
        flex-direction: column;
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-section {
        flex-direction: column;
        gap: 30px;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .coaching-methods h2,
    .client-testimonials h2,
    .market-insights h2 {
        font-size: 2rem;
    }

    .contact {
        padding: 50px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2,
    .coaching-methods h2,
    .client-testimonials h2,
    .market-insights h2 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-menu {
        top: 60px;
    }
}.services-hero {
   display: flex;
    align-items: center;
    justify-content :space-between;
    padding: 80px 40px;
    max-width: 1200px;
  margin: 0 auto;
   gap: 40px;
}

.services-hero-content {
  flex   :   1;


}

.services-hero-content h1 {
               line-height: 1.2;
   margin-bottom: 1.5rem;
   font-size: 3rem;
    font-weight: 700;
  color: #2c3e50;
}

.services-hero-content p {
  font-size: 1.1rem;
   color: #555;
          margin-bottom: 2rem;
    line-height: 1.8;
}

.services-hero-visual {
   flex: 1;
  overflow: hidden;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.services-hero-image {
  width: 100%;
      height: auto;
  display :      block;
    object-fit: cover;
}

.coaching-services {
   padding: 80px 40px; 
	    background: #f8f9fa;
}

.coaching-cards-grid    {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.coaching-card {
   background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   position: relative;
    transition: all 0.3s ease;
 border-top: 5px solid #3498db;
}

.coaching-card:hover {

  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}  

.coaching-card-icon {
   position: absolute;
   top: -20px;
  left: 30px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
	 width: 60px;
   height  :     60px;
  border-radius: 50%;
    display: flex;
  align-items: center;
     justify-content: center;
    font-weight: bold;
   font-size: 1.5rem;
}

.coaching-card h3 {
  color: #2c3e50;

    font-size: 1.4rem;

   margin-bottom: 1rem;

  margin-top: 0.5rem;

   font-weight: 600;
}

.coaching-card p{
    color: #555;
 line-height: 1.8;
                    margin-bottom :       1.5rem;
   font-size: 0.95rem;
}

.coaching-details {
   display: flex;
				 flex-direction: column;
  gap: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ecf0f1; 

}

.detail-item {
    font-size: 0.9rem;
   color: #7f8c8d;
    font-weight     :     500;
}

.consulting-services {
  margin: 0 auto;
    padding: 80px 40px;
   max-width: 1200px;
}

.consulting-services h2 {
  font-size: 2.5rem; 
	   color: #2c3e50; 
	   margin-bottom: 50px; 
		text-align: center; 
	   font-weight: 700; 

}

.consulting-content {

    display: flex;
  flex-direction: column;
   gap: 60px;


}

.consulting-item {
  align-items: center;
  gap: 50px;
          display: flex;
}

.consulting-item.reverse-order {
   flex-direction: row-reverse;
}

.consulting-image {
    flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    height: 400px;
   object-fit: cover;


}

.consulting-text {
    flex: 1;
}

.consulting-text h3 {
    font-size: 1.8rem; 
	  color  :  #2c3e50; 
	   margin-bottom: 1.5rem; 
	   font-weight: 600;
}

.consulting-text p {
  color: #555;
   line-height: 1.8;
   margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.consulting-benefits {
   list-style: none;
}

.consulting-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    color: #2c3e50;
  position: relative;
    font-weight: 500;
  font-size:      0.95rem;
    line-height: 1.6;
}

.consulting-benefits li:before {
  content: "✓";

	   position: absolute;

	  left: 0;

	   color: #27ae60;

	  font-weight: bold;

	  font-size: 1.2rem;

}

.training-workshops {
   padding: 80px 40px;
  background: #f8f9fa;
}

.training-programs {
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.training-card {
	 background: white;
  border-radius: 12px;
    overflow   :       hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	padding: 2rem;
    display: flex;
    flex-direction: column;
   transition  :    all 0.3s ease;
}

.training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.training-header {
  display: flex;
  justify-content: space-between;
	align-items: flex-start;
 margin-bottom: 1.5rem;
  border-bottom   :    2px solid #3498db;
    padding-bottom: 1rem;
}

.training-header h3 {
	 color: #2c3e50;
   font-size: 1.3rem;
  font-weight: 600;
    margin: 0;
}

.training-duration {


  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
   padding: 6px 14px;
    border-radius: 20px;
   font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
	}

.training-card p {
  color: #555;
   line-height: 1.8;
   margin-bottom: 1.5rem;
   flex-grow :1;
    font-size   :       0.95rem;
}

.training-curriculum {
   -webkit-border-radius: 8px;
    background: #f8f9fa;
   -moz-border-radius: 8px;
   padding     :    1.5rem;
  border-radius: 8px;
		 margin-bottom: 1.5rem;
}

.training-curriculum h4 {
    color: #2c3e50;
      font-size: 0.95rem;
      margin-bottom: 1rem;
     font-weight: 600;
}

.training-curriculum ul {
      list-style: none;}

.training-curriculum li {
 padding: 8px 0;
    padding-left: 20px;
   color: #555;
   position: relative;
   font-size  :      0.85rem; 

}

.training-curriculum li:before {
  content: "→";
    position: absolute;
    left    :    0;
    color: #3498db;
   font-weight: bold;
}

.training-meta {
   display: flex;
    gap: 1rem;
	 flex-wrap: wrap;
}

.meta-badge {
    display: inline-block;
    background: #ecf0f1;
    color: #2c3e50;
  padding: 6px 12px;
   border-radius: 6px;
   font-size: 0.8rem;
      font-weight: 600;
}

.conferences-events {
	padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto; 

}

.conferences-events h2 {
   font-size: 2.5rem;
    color: #2c3e50;
         margin-bottom: 50px;
  text-align: center;
	 font-weight: 700;
}

.conferences-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}



.conference-card {
  background: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 2.5rem;
   transition: all 0.3s ease;
  border-left: 5px solid #9b59b6;
}

.conference-card:hover {

	  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);

}

.conference-header {
    display: flex;
   justify-content: space-between;
   align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  border-bottom: 2px solid #ecf0f1;
}

.conference-header h3 {
    color: #2c3e50;
    margin: 0;
   font-size: 1.3rem;
	 font-weight: 600;
}

.conference-year {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  color: white;
  padding: 6px 12px;
   border-radius    :      20px;
    font-size  :        0.85rem;
  font-weight: 600;
        white-space  :        nowrap;
}

.conference-card p {


   color: #555;
    line-height:     1.8;
    margin-bottom: 1.5rem;
  font-size: 0.95rem;

}

.conference-highlights {
  background: #f8f9fa;
   padding: 1.5rem;
    border-radius: 8px;
	margin-bottom: 1.5rem;


}

.conference-highlights h4 {
  color: #2c3e50;
    font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.conference-highlights ul {
  list-style: none;
}

.conference-highlights li {
   padding: 8px 0;
    padding-left: 20px;
   color     :     #555;
        position: relative;
  font-size: 0.85rem;
}

.conference-highlights li:before {
  content: "•";
    position: absolute;
    left: 0;
    color: #9b59b6;
                    font-weight: bold;
}

.conference-meta {
	display: flex;
   gap   :        1rem;
  flex-wrap: wrap;
     }

.meta-event {
   display: inline-block;
       background  :        #ecf0f1;
	color     :        #2c3e50;
  padding: 6px 12px;
    border-radius: 6px;
   font-size: 0.8rem;
    font-weight: 600;
}

.pricing-packages {
    padding: 80px 40px;
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
}

.pricing-packages h2 {
    font-size: 2.5rem;
   color: #2c3e50;
   text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-subtitle {
      text-align: center;
    color:    #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1.05rem;
  max-width: 600px;
   margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
    max-width   :     1100px;
  margin: 0 auto;
   display:       grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
  background: white;
      border-radius: 12px;
  padding :  2.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.professional {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-card.professional:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-header
{
   margin-bottom: 2rem;
 padding-bottom: 1.5rem;
               border-bottom : 2px solid #ecf0f1;
}

.pricing-header h3 {
    color: #2c3e50;
  font-size: 1.5rem;
   margin-bottom: 0.5rem;
   font-weight :   600;
}

.pricing-description {
   color: #7f8c8d;
   font-size: 0.9rem;
   margin: 0;
}

.pricing-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
   padding :     12px 0;
    color: #555;
    padding-left: 25px;
  position  :relative;
    font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-features li:before {
  content: "✓";
   position: absolute;
               left: 0;
    color: #27ae60;
  font-weight: bold;
   font-size: 1.1rem;
}

.pricing-cta {
   display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
     color: white;
   padding: 12px 30px;
  border-radius: 8px;
    text-decoration    :    none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.pricing-cta.featured {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.pricing-cta.featured:hover {
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.why-expand-services {
  padding: 80px 40px;
}

.why-expand-services h2 {
   font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
         margin-bottom: 50px;
  font-weight: 700;
}

.features-grid {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
   transition: all 0.3s ease;
   position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.feature-card:hover h3,
.feature-card:hover p {
  color     :white;
}

.feature-number {
  position: absolute;
    top: 0;
  left   :     0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color  : white;
  width: 50px;
       height: 50px;
   border-radius: 50%;
   display: flex;
        align-items: center;
    justify-content: center;
    font-weight: bold;
   font-size: 1.3rem;
}

.feature-card h3 {
	    color: #2c3e50;

	  font-size: 1.3rem;

	  margin-bottom: 1rem;

	   margin-top: 1rem;

	    font-weight: 600;
     }

.feature-card p {
  color: #555;
    font-size :      0.95rem;
   line-height: 1.8;
}

.thankyou-section {
                    padding: 80px 40px;
   min-height: 100vh;


} 

.thankyou-container {
    max-width: 900px;
  margin: 0 auto;
}

.thankyou-success {
  background: white;
   border-radius: 15px;
   padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.success-icon {
	    animation: successPulse 0.6s ease;
   margin-bottom: 2rem;
  color: #27ae60;
}

.success-icon svg {
  filter: drop-shadow(0 4px 10px rgba(39, 174, 96, 0.3));
}@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-success h1 {
                    font-size:    2.5rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.thankyou-message {
    font-size: 1.1rem;
  color: #555;
    line-height: 1.8;
  margin-bottom: 3rem;
}

.thankyou-details {
    margin-bottom: 3rem;
          text-align: left;
}

.thankyou-details h2

{

	   font-size: 1.8rem;
  color: #2c3e50;
   margin-bottom    :    2rem;
               text-align: center;
   font-weight: 600;}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
   margin-bottom: 2rem;
}

.detail-item {
  background: #f8f9fa;
   padding: 2rem;
    border-radius: 10px;
   transition: all 0.3s ease;
}  

.detail-item:hover {
    background: #ecf0f1;
  transform: translateY(-5px);
}

.detail-step {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
               width: 50px;
   height: 50px;
   border-radius: 50%;
         display: flex;
  align-items: center;
   justify-content     : center;
   font-weight: bold;
    font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.detail-item h3  {
  color: #2c3e50;
         font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600; 
	
}

.detail-item p {
    color: #555;
  font-size: 0.9rem;
   line-height: 1.6;
	text-align: center;
}

.thankyou-timeline {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 3rem;
  border-radius     : 12px;
	margin-bottom: 3rem;
}

.thankyou-timeline h2 {
	margin-bottom: 2rem;
   font-size   :       1.8rem;
  color: #2c3e50;
   font-weight: 600;
}

.timeline-item {
  background: white;
    padding: 1.5rem;
	border-radius: 8px;
  margin-bottom:  1.5rem;
    border-left: 4px solid #3498db;
}


.timeline-marker {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
  margin-bottom: 0.8rem;

}

.timeline-item p {
    color: #555;
   margin: 0;
   font-size:0.95rem;
}

.timeline-arrow {
   text-align: center;
  color: #3498db;
   font-size: 1.5rem;
         margin: 0.5rem 0;
    font-weight: bold;

}

.thankyou-cta
{

	   margin-bottom: 3rem;
     }

.waiting-text {
  color: #555;
     font-size: 1rem;
       margin-bottom: 1.5rem;
       display: block;
}

.cta-buttons 
 {
   display: flex;
   gap: 1rem;
   justify-content: center;
  flex-wrap: wrap;

}

.thankyou-btn {
    display: inline-block;
   padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  font-size: 1rem;
}

.thankyou-btn.btn-primary

{
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
   color: white;
}

.thankyou-btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.thankyou-btn.btn-secondary{
   background: white;
  color: #3498db;
    border: 2px solid #3498db;
}

.thankyou-btn.btn-secondary:hover {
   background: #3498db;
   color: white;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.thankyou-faq {
  text-align: left;
	 background: white;
  padding: 2rem;
  border-radius: 10px;
  border-top    : 3px solid #3498db;

}

.thankyou-faq h2 {
  font-size: 1.8rem;
    color: #2c3e50;
	margin-bottom: 2rem;
    text-align:center;
          font-weight: 600;
}

.faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
   background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
    transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  background: #ecf0f1;
  transform: translateY(-3px);
	
}

.faq-item h3 {
   color: #2c3e50;
   font-size: 1.1rem;
  margin-bottom: 1rem;
   font-weight: 600;
}

.faq-item p {
        color: #555;
    font-size: 0.9rem;
  line-height: 1.7;
}@media (max-width: 768px) {
    .services-hero {
        flex-direction: column;
        padding: 50px 20px;
    }

    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .coaching-cards-grid {
        grid-template-columns: 1fr;
    }

    .consulting-item,
    .consulting-item.reverse-order {
        flex-direction: column;
        gap: 30px;
    }

    .consulting-image {
        height: 300px;
    }

    .training-programs {
        grid-template-columns: 1fr;
    }

    .pricing-card.professional {
        transform: scale(1);
    }

    .pricing-card.professional:hover {
        transform: translateY(-8px);
    }

    .conferences-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-success {
        padding: 30px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .thankyou-btn {
        width: 100%;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .coaching-card {
        padding: 1.5rem;
    }

    .training-header {
        flex-direction: column;
        gap: 1rem;
    }

    .thankyou-success {
        padding: 20px;
    }

    .thankyou-success h1 {
        font-size: 2rem;
    }

    .detail-item {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .training-header h3 {
        font-size: 1.1rem;
    }
}.policySection {
      padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
   max-width: 800px;
    margin: 0 auto;
      text-align :left;
}

.policyContainer h1 {
   font-size: 3rem; 
    color:#2c3e50; 
  margin-bottom: 2rem; 
   font-weight: 700; 
  line-height     :    1.2;
}

.policyContainer h2 {
  font-size: 1.8rem;
	 color: #2c3e50;
  margin-bottom: 1rem;
   margin-top: 2rem;
   font-weight: 600;
   line-height: 1.3;
  border-bottom: 2px solid #3498db;
   padding-bottom: 0.5rem;
}

.policyContainer p {
    color:       #555;
  margin-bottom: 1.5rem;
  line-height :    1.8;
  font-size: 1rem;
   text-align: justify;
}

.policyContainer p:first-of-type {
  margin-bottom: 2rem;
    font-size: 1.1rem;
  color: #7f8c8d;
}

.policyContainer h1 + p {
     font-size: 1.05rem;
   color: #666;
    margin-bottom: 2rem;
   padding-bottom: 1rem;
  border-bottom: 1px solid #ecf0f1;

}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }

    .policyContainer p:first-of-type {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}