* {
     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-color    :     #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  padding: 15px 0;
    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;
  padding: 0 20px;
    display: flex;
    justify-content: space-between;
   align-items: center;
	}

.logo-wrapper {
   display: flex;
      align-items :    center;
}

.nav-logo {
   height: 94px;
	 width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
  list-style   :   none;
                    display: flex;
   gap: 30px;
}

.nav-link {
	  color     :  white;
   text-decoration: none;
   font-weight: 500;
    transition: all 0.3s ease;
  padding: 8px 12px;
    border-radius: 4px;
	}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
     transform: translateY(-2px);
}

.burger-menu  {
  display: none;
  background: none;
   border: none;
 cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.burger-line {
    width: 25px;
   height: 3px;
    background-color: white;
  border-radius: 2px;
    transition :all 0.3s ease;
} 

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
    padding: 120px 20px; 
  text-align    : center; 
    position: relative; 
  overflow: hidden;
}

.hero::before {
  content: '';
   position: absolute;
    top: -50%;
  right:   -10%;
  width: 500px;
   height: 500px;
  background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;


}

.hero-content {
  max-width: 800px;
    margin: 0 auto;
	position: relative;
   z-index: 1;
}

.hero h1
	{
  font-size: 3.5rem;
    margin-bottom: 20px;
   font-weight: 700;
	letter-spacing: -1px;
}

.hero p {
	  font-size: 1.3rem;
    margin-bottom: 30px;
   opacity: 0.95;
   line-height: 1.8;


}

.cta-button {
  display: inline-block;
  background-color  :#f39c12;
    color: white;
   padding: 16px 40px;
    text-decoration: none;
   border-radius: 6px;
   font-weight: 600;
      transition: all 0.3s ease;
   border: 2px solid #f39c12;
}

.cta-button:hover{
  background-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.intro-section {
   padding: 80px 20px;
   background-color: white;
}

.section-wrapper {
  max-width: 1200px;
    margin: 0 auto;
  display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 50px;
   align-items: center;
}

.intro-text h2 {
   font-size: 2.5rem;
    margin-bottom: 25px;
		color: #1a237e;
}

.intro-text p {
   font-size: 1.1rem;
	 margin-bottom: 20px;
  color   :      #555;
  line-height: 1.8;
}

.intro-image img {
    width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.strategy-section
{
   padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.strategy-section h2 {
	 text-align: center;
   font-size: 2.5rem;
	 margin-bottom: 60px;
  color: #1a237e;
}

.strategy-grid {
    max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 30px;
}

.strategy-card {
   background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
 border-left: 5px solid #667eea;
}

.strategy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.strategy-card h3 {
   color: #1a237e;
  font-size: 1.4rem;
    margin-bottom: 15px;
}

.strategy-card p {
    color: #666;
        line-height: 1.7;
}

.process-section {

    padding: 80px 20px;

		background-color  :white; 
	
     }

.process-content {
    max-width: 1200px;
  margin: 0 auto;
}

.process-content h2   {
  text-align: center;
   font-size: 2.5rem;
   margin-bottom: 50px;
   color: #1a237e;
}

.process-image {
                    width: 100%;
   max-width: 500px;
  margin: 0 auto 50px;
    border-radius   :  12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
   display  :  block;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.step 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
     padding: 30px;
    border-radius: 10px;
  text-align: center;
   position: relative;
}

.step-number     {
  font-size: 3rem;
	 font-weight: 700;
  opacity: 0.3;
   display: block;
   margin-bottom: 15px;
}

.step h3 {
    margin-bottom :      15px;
    font-size     :       1.3rem;
}

.step p {
               font-size: 0.95rem;

	   line-height: 1.6;

	  opacity: 0.95;
}

.workshop-section 
 {
   padding: 80px 20px;
  background-color: #f8f9fa;
}

.workshop-wrapper {
  max-width    :       1200px;
    margin: 0 auto;
    display: grid;
	 grid-template-columns: 1fr 1fr;
   gap: 50px;
   align-items: center;
}  

.workshop-image {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.workshop-text h2	{
  font-size: 2.5rem;
    margin-bottom: 25px;
  color   :#1a237e;
}

.workshop-text p {
   color: #666;
    margin-bottom: 20px;
   line-height: 1.8;
}

.workshop-list {

	    list-style: none;

	    margin: 25px 0;


}

.workshop-list li {
   position: relative; 
  padding-left: 30px; 
  padding: 12px 0; 
  color: #555;
}

.workshop-list li:before {
	  content: '▸';
    position: absolute;
    left: 0;
  color: #667eea;
  font-weight: bold;
	}

.conference-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color     :  white;
}

.conference-section h2 {
  text-align: center;
   font-size: 2.5rem;
      margin-bottom :        20px;
}

.conference-intro {
  text-align: center;
  max-width: 700px;
   margin: 0 auto 50px;
   font-size: 1.1rem;
    line-height: 1.8;
}

.conference-grid {
   max-width  :     1200px;
  margin  :  0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; 
	
}

.conference-card {
	  background: rgba(255, 255, 255, 0.1);
    padding: 35px;
   border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
     }

.conference-card h3 {
   margin-bottom  :     15px;
    font-size: 1.4rem;
}

.conference-card p {

		 line-height: 1.7;
   opacity: 0.95;
}

.webinar-section {
  padding: 80px 20px;
   background-color: white;
}

.webinar-content {
    max-width   :      1200px;
    margin: 0 auto;
}

.webinar-content h2 {
  text-align: center;
   font-size: 2.5rem;
	margin-bottom: 30px;
    color: #1a237e;
}

.webinar-image {
	 width    :       100%;
    max-width: 450px;
   margin: 0 auto 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: block;
}


.webinar-content > p {
    margin: 0 auto 40px;
  font-size: 1.1rem;
   color: #666;
    text-align: center;
	max-width: 700px;
   line-height: 1.8;
}

.webinar-topics {
    display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
    margin-bottom: 30px;
}

.topic-item


{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    border-radius: 8px;
  border-left: 4px solid #667eea;
    color: #2c3e50;
}

.webinar-note {
   text-align: center;
   color: #666;
               font-size: 0.95rem;
    margin-top: 30px;
  font-style: italic;
}

.monetization-section {
   padding: 80px 20px;
   background-color: #f8f9fa;
}

.monetization-wrapper {
  max-width: 1200px;
    margin     :        0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 50px;
   align-items: center;
}

.monetization-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  color: #1a237e;
}

.monetization-text p {
   color: #666;
  margin-bottom: 20px;
    line-height: 1.8;
}

.monetization-list {
	display: flex;
   flex-direction: column;
   gap: 20px;
    margin-top:    25px;
}

.money-item {
		background: white;
  padding: 25px;
   border-radius: 8px;
   border-left: 4px solid #f39c12;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
     }

.money-item h3 {
   color: #1a237e;
	  margin-bottom: 10px;
}

.money-item p {
    color: #666;
  font-size: 0.95rem;
}

.monetization-image {
         width: 100%;
       border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.packages-section {
  padding: 80px 20px;
	background-color: white;
}

.packages-section h2 {
	   text-align: center;
    color  :      #1a237e;
    font-size:  2.5rem;
    margin-bottom: 60px;

}

.packages-grid {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.package-card {
  background: white;
     border: 2px solid #e0e0e0;
	border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position  :   relative;
}

.package-card:hover {
  transform: translateY(-10px);
      border-color: #667eea;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
} 

.package-card.featured  
  {
  border-color: #f39c12;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
  transform: scale(1.05);

}

.package-card h3 {
  font-size :   1.8rem;
   margin-bottom: 15px;
   color: #1a237e;
	
}

.package-price {
   color: #f39c12;
  font-weight: 700;
    margin-bottom: 30px;
  font-size: 2.5rem;
}

.package-features {
   margin-bottom: 30px;

    text-align: left;

   list-style: none;
}

.package-features li {
       padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
   color: #666;
}

.package-features li:last-child {
  border-bottom  : none;
}

.package-button {
    display: block;
   background-color: #667eea;
    color: white;
    padding: 14px 30px;
   text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
    transition: all 0.3s ease;
  border     :       2px solid #667eea;
    width: 100%;
 text-align    : center;
  cursor: pointer;
}

.package-button:hover {

	    background-color: transparent;
    color: #667eea;

}

.package-button.featured-btn
{

    background-color    :  #f39c12;
 border-color: #f39c12;


}

.package-button.featured-btn:hover {
    background-color: transparent;
   color: #f39c12;
}

.testimonials-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-section h2 {
   color: #1a237e;
    font-size   :      2.5rem;
    text-align: center;
  margin-bottom: 60px;
}


.testimonials-grid {
    max-width: 1200px;
   margin  :      0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.testimonial-card  
  {
    background: white;
               padding: 35px;
    border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
   border-top: 4px solid #667eea;
}

.testimonial-text {
    color: #555;
 margin-bottom: 20px;
    font-size     :      1rem;
    line-height: 1.7;
   font-style: italic;
}

.testimonial-author {
  color: #1a237e;
   font-weight: 600; 

}

.cta-section {
 padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
 font-size: 1.2rem;
    margin-bottom: 30px;
   opacity: 0.95;
}

.cta-button-large {
                    display: inline-block;
   background-color: #f39c12;
	color: white;
    padding:18px 50px;
    text-decoration: none;
     border-radius: 6px;
    font-weight: 600;
  font-size: 1.1rem;
  transition    :      all 0.3s ease;
  border: 2px solid #f39c12;
}

.cta-button-large:hover {
    background-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact  {
  padding: 80px 20px;
    background-color: white;
}

.contact h2 {
  text-align: center;
    font-size: 2.5rem;
   margin-bottom: 15px;
  color:  #1a237e;
}

.contact-intro {
  text-align: center;
  max-width    :    700px;
    margin: 0 auto 50px;
    color: #666;
  font-size     : 1.1rem;
  line-height: 1.8;
}

.contact-form {
  max-width: 700px;
    margin: 0 auto;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding   :     40px;
      border-radius: 10px;
}

.form-group  {

  margin-bottom:    25px;}

.form-group label {
	 display: block;
   margin-bottom: 8px;
  color: #1a237e;
    font-weight: 600; 
	
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding    :     12px 15px;
   border :   2px solid #e0e0e0;
   border-radius: 6px;
   font-family: inherit;
  font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-submit {
	width: 100%;
    padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :white;
    border: none;
  border-radius: 6px;
   font-weight: 600;
    font-size: 1rem;
  cursor: pointer;
    transition: all 0.3s ease;


}


.form-submit:hover

{
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.footer {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: white;
    padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
   gap: 60px;
   margin-bottom: 40px;
}

.footer-logo-section {
  display: flex;
  align-items: flex-start;
}

.footer-logo {

	 height   :        136px;
  width: auto;
  filter: brightness(0) invert(1);


}

.footer-content {
  display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
               gap: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
  font-size :       1.2rem; 
	
}

.footer-links {
    list-style: none;
}

.footer-links li {
	 margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
   text-decoration : none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
  color     : white;
   padding-left :      5px;
}

.footer-address {
   margin-bottom  :       15px;
	line-height   :  1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-phone {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
                    text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-wrapper,
    .workshop-wrapper,
    .monetization-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 300px;
    }
    
    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }
    
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .strategy-section h2,
    .process-content h2,
    .webinar-content h2,
    .monetization-text h2,
    .workshop-text h2,
    .packages-section h2,
    .testimonials-section h2,
    .contact h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .cta-button,
    .cta-button-large {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .process-steps,
    .strategy-grid,
    .conference-grid,
    .webinar-topics,
    .testimonials-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 100px 20px;
   text-align: center;
  position: relative;
	 overflow: hidden;
}

.services-hero::before {
  content: '';
  position    :      absolute;
   top: -50%;
   right :  -10%;
    width: 500px;
    height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* Hack for old browsers */


.services-hero-content {
     max-width: 900px;
    margin: 0 auto;
    position: relative;
   z-index: 1;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
   font-weight: 700;
}

.services-hero p {

		font-size: 1.3rem;
  opacity: 0.95;
   line-height: 1.8;
	}

.services-container {
	max-width:1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.services-overview {
   padding: 80px 20px;
   background-color: white;
}

.services-overview h2 {
  text-align: center;
  font-size: 2.5rem;
   margin-bottom: 20px;
   color    :        #1a237e;
}

.overview-intro {
  text-align: center;
    max-width: 700px;
         margin: 0 auto 60px;
   color: #666;
   font-size: 1.1rem;
    line-height: 1.8;
	
}

.services-main-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}  

.service-main-card {
  background: white;
    border: 2px solid #e0e0e0;
  border-radius: 10px;
    padding: 35px;
	transition: all 0.3s ease;
}

.service-main-card:hover {
  border-color: #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  transform: translateY(-8px);
}

.service-main-card h3 {
	 color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-main-card p {
   color: #666;
       line-height: 1.7;
     margin-bottom: 20px;
}

.service-link {


    color:    #667eea;
	text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;}

.service-link:hover {
   color: #764ba2;
  transform: translateX(5px);
}

.coaching-detailed {
        padding: 80px 20px;
 background-color: #f8f9fa;
}

.coaching-wrapper {
               display: grid;
   grid-template-columns   :        1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.coaching-image {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Animation and transitions */

.coaching-content h2 {
    font-size :2.5rem;
    margin-bottom: 25px;
   color: #1a237e;
}

.coaching-content p {
  color     : #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.details-header {
   color   :        #1a237e;
  font-size: 1.3rem;
   margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #667eea;
  padding-left: 15px;
}

.details-list {
   list-style: none;
   margin-bottom: 20px;
}

.details-list li {
    padding: 10px 0;
    padding-left: 30px;
    color: #555;
  position: relative;
}

.details-list li:before {
   position: absolute;
   color: #667eea;
   font-weight: bold;
  content: '→';
  left: 0;
}

.coaching-note {
	  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 20px;
      border-radius: 8px;
               margin: 30px 0;
   border-left: 4px solid #667eea;
   color  : #555;
     }

.cta-btn {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding :14px 35px;
  text-decoration: none;
    border-radius   :    6px;
    font-weight: 600;
   transition: all 0.3s ease;
  margin-top: 20px;
}
	/* Temporary fix */
/* Auto-generated CSS */


/* Hack for old browsers */


.cta-btn:hover {

  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
     }

.workshops-detailed {
    padding: 80px 20px;
  background-color: white;
}

.workshops-detailed h2 {

	  text-align: center;
	 font-size: 2.5rem;
  margin-bottom: 20px;
   color: #1a237e;


}

.workshops-intro {
          text-align: center;
  max-width: 700px;
	 margin: 0 auto 60px;
    color: #666;
   font-size: 1.1rem;
    line-height: 1.8;
}
	/* Performance critical */



.workshops-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.workshop-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 30px;
    border-radius: 10px;
  border-left    :5px solid #667eea;
  transition: all 0.3s ease;
}

/* Experimental feature */

.workshop-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
	/* Generated styles */
.workshop-item h3 {
  color: #1a237e;
   font-size    :        1.3rem;
  margin-bottom: 10px;
}



.workshop-date {
        color   :   #667eea;
    font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.workshop-item p {
  color: #555;
   line-height     : 1.7;
   margin-bottom: 20px;
}

.workshop-btn     {
  display: inline-block;
   background-color: #667eea;
    color: white;
	 padding    :        10px 25px;
   text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
    font-size: 0.95rem;
}

.workshop-btn:hover	{
   background-color: #764ba2;
  transform: translateY(-2px);
}

.webinars-detailed    {


        padding: 80px 20px;
  background-color: #f8f9fa;
     }

.webinars-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
   align-items: flex-start;
}

.webinars-content h2 {
  font-size: 2.5rem;
   margin-bottom: 25px;
    color: #1a237e;
}

.webinars-content p {
     color  :     #666;
   margin-bottom: 25px;
  line-height: 1.8;
     }

.webinar-header {
   color: #1a237e;
  font-size: 1.3rem;
  margin: 30px 0 20px 0;
                    border-left: 4px solid #667eea;
    padding-left: 15px;
}

.webinars-list {
  list-style   : none;
 margin-bottom    : 25px;
}

.webinars-list li {
      -moz-border-radius: 8px;
    padding: 15px;
   margin-bottom: 12px;
    background: white;
    border-radius: 8px;
  -webkit-border-radius:    8px;
  border-left     :3px solid #f39c12;
  color: #555;
  line-height: 1.6;
	}

.webinar-note {


  background: linear-gradient(135deg, #f39c1215 0%, #667eea15 100%);
    padding: 20px;
  border-radius: 8px;
   color: #555;
   font-size: 0.95rem;
}
/* Custom modifications */
	/* TODO: optimize for mobile */

.webinars-image {
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.conference-detailed {
   padding: 80px 20px;
            background-color: white;
}

.conference-detailed h2 {
    text-align: center;
  font-size: 2.5rem;
   margin-bottom: 15px;
	color: #1a237e;
}

.conference-tagline	{
   text-align: center;
  color: #667eea;
    font-size: 1.3rem;
  margin-bottom: 50px;
  font-weight: 600;
}

.conference-details		{
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
    margin-bottom: 50px;
}
/* Responsive design */

.conference-info-block {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding    :    30px;
         border-radius: 10px;
  border-left: 4px solid #667eea;
}  

.conference-info-block h3 {
  color: #1a237e;
   font-size: 1.3rem;
  margin-bottom: 20px;
}

.info-list {
    list-style: none;
}

.info-list li {
   padding: 10px 0;
  color: #555;
   line-height   :  1.7;
}

.conference-image     {


   width: 100%;
  max-width: 600px;
	 margin: 40px auto;
	border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: block;

}

.conference-speakers {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
               padding: 40px;
   border-radius: 10px;
   text-align: center;
    margin-top: 40px;
}

.conference-speakers h3 {
   color: #1a237e;
 font-size: 1.5rem;
    margin-bottom: 15px;
}

.conference-speakers p {
  color: #666;
	margin-bottom: 25px;
   line-height: 1.8;}

.comparison-section {
  padding: 80px 20px;
   background-color: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
  font-size: 2.5rem;
    margin-bottom: 50px;
   color: #1a237e;
}

.comparison-table {
  overflow-x   : auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color:      white;
   border-radius: 10px;
	 overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

thead	{
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
      color: white;
}

th {

  padding: 20px;
   text-align: left;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
	}

th:last-child    {
    border-right: none;
}

td {
    padding: 18px 20px;
      border-bottom: 1px solid #e0e0e0;
      color: #555;
}

tbody tr:hover {
	background-color: #f5f7fa;
}

tbody tr:last-child td {

	   border-bottom: none;
	}

.services-cta {
    padding     :      80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
   font-size: 1.1rem;
    line-height: 1.8;
  margin-bottom: 30px;
    opacity: 0.95;
}

.thankyou-section {
   padding: 60px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: calc(100vh - 200px);
}

.thankyou-container {
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-content {
   background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-content h1


{
   font-size: 2.8rem;
  color: #1a237e;
    margin-bottom: 10px;
   text-align: center;
}

.thankyou-subtitle {
         text-align: center;
          color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 40px;
   font-weight: 600;
}

.thankyou-message {
  margin-bottom  :        40px;
}

.thankyou-message p {
	color: #666;
  line-height: 1.8;
   margin-bottom: 20px;
  font-size: 1.05rem;
}

.thankyou-message h2 {
   font-size: 1.5rem;
   color: #1a237e;
  border-bottom: 2px solid #667eea;
   margin: 35px 0 25px 0;
    padding-bottom: 10px;
}
/* Utility classes */

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
	gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 8px;
    border-left: 4px solid #667eea;
}

.step-num {
  display: flex;
  align-items: center;
    justify-content: center;
    width : 40px;
    height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
    font-weight: 700;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.step-content h3 {
               color: #1a237e;

	    margin-bottom: 8px;

	  font-size: 1.1rem;
}

.step-content p {
  color: #666;
   font-size: 0.95rem;
  line-height: 1.6;
}

.thankyou-bonus {
  background: linear-gradient(135deg, #f39c1210 0%, #667eea10 100%);
  padding: 35px;
 border-radius:   10px;
  border-left: 5px solid #f39c12;
	margin-bottom: 40px;
  text-align: center;
}

.thankyou-bonus h2 {

	   color: #1a237e;
    font-size: 1.5rem;
   margin-bottom: 15px;
    border: none;
         padding: 0;

	}

.thankyou-bonus p {
  color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.bonus-title {
   font-size: 1.1rem;
  color: #667eea;
   font-weight: 600;
	margin: 15px 0;
}

.bonus-button {
     display: inline-block;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 14px 35px;
   text-decoration: none;
   border-radius: 6px;
    font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.bonus-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.thankyou-faq {
	   margin-bottom: 40px;
}

.thankyou-faq h2 {
    color     :       #1a237e;
   font-size: 1.5rem;
  margin-bottom: 25px;
   border-bottom: 2px solid #667eea;
   padding-bottom: 10px;
}

.faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 8px;
}

.faq-item h3 {
   color: #1a237e;
   margin-bottom: 10px;
   font-size: 1.1rem;
}

.faq-item p {
   color: #666;
   line-height: 1.7;
    font-size: 0.95rem;
}

.thankyou-links {
     text-align: center;
   padding-top: 30px;
  border-top: 2px solid #e0e0e0; 

}

.thankyou-links h2 {
   color   :   #1a237e;
  font-size: 1.3rem;
    margin-bottom: 25px;
   border: none;
    padding: 0;
}

.link-button    {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 12px 30px;
   text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
   margin: 0 10px;
}

.link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
	
}
@media (max-width: 768px) {
    .coaching-wrapper,
    .webinars-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-num {
        align-self: flex-start;
    }
    
    .thankyou-content {
        padding: 30px 20px;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .link-button {
        display: block;
        margin: 10px 0;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 60px 20px;
    }
    
    .services-overview,
    .coaching-detailed,
    .workshops-detailed,
    .webinars-detailed,
    .conference-detailed,
    .comparison-section,
    .services-cta,
    .thankyou-section {
        padding: 40px 20px;
    }
    
    .services-hero h1 {
        font-size: 1.6rem;
    }
    
    .services-overview h2,
    .workshops-detailed h2,
    .conference-detailed h2,
    .comparison-section h2,
    .services-cta h2 {
        font-size: 1.8rem;
    }
    
    .thankyou-content {
        padding: 20px 15px;
    }
    
    .thankyou-content h1 {
        font-size: 1.6rem;
    }
}.policySection {
	 padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
    max-width: 800px;
                    margin: 0 auto;
   text-align: left;
}

.policyContainer h1 {
      font-size: 2.8rem;
  color: #1a237e;
  margin-bottom: 2rem;
  font-weight: 700;
    border-bottom: 3px solid #667eea;
    padding-bottom: 1rem;}

/* Production ready */

.policyContainer h2 {
  font-size: 1.8rem;
  color: #2c3e50;
    margin-bottom: 1.2rem;
    margin-top    :      2.5rem;
   font-weight: 600;
   border-left: 5px solid #667eea;
	padding-left: 1rem;
}

.policyContainer p {
   color: #555;
   margin-bottom: 1.5rem;
    line-height: 1.8;
   font-size: 1.05rem;
  text-align: justify;
}

.policyContainer strong {
  color: #1a237e;
  font-weight: 600;
}
@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
}