* {
   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, #1e3c72 0%, #2a5298 100%);

	  padding: 1.2rem 0;

	  position: sticky;

	  top: 0;

	  z-index: 1000;

	  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.15);
}

.nav-container {
     max-width: 1200px;
    margin: 0 auto;
			padding: 0 2rem;
  display: flex;
  justify-content: space-between;
    align-items: center;
}

.nav-brand img {
   height: 74px;
  width: auto;
  filter: brightness(0) invert(1);
	transition: transform 0.3s ease;
}

.nav-brand img:hover {
  transform: scale(1.05);
}

.nav-menu {

  display: flex;
    list-style: none;
	gap: 2.5rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
    font-weight: 500;
   font-size: 1.05rem;
   transition: all 0.3s ease;
        position: relative;
  padding-bottom: 0.5rem;
} 

.nav-link:after {
  content: '';
  position   :   absolute;
   bottom:   0;
    left: 0;
          width: 0;
        height: 2px;
       background: #ffc107;
   transition:        width 0.3s ease;
}

.nav-link:hover:after {
   width: 100%;
}

.nav-toggle {
   display  : none;
  flex-direction: column;
    cursor: pointer;
    gap     :    0.35rem;
}

.hamburger    {
  width: 28px;
  height: 3px;
    background-color: #ffffff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active .hamburger:nth-child(2) {
   opacity: 0;

}

.nav-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -7px);
}

.hero {
   display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: center;
  max-width : 1200px;
   margin: 0 auto;
    padding: 6rem 2rem;
    gap: 4rem;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
}

.hero-content h1 {
	 font-size: 3.5rem; 
    color: #1e3c72; 
         margin-bottom: 1.5rem; 
    line-height: 1.2; 
   font-weight    : 700; 
	
}

.hero-content p
	{
 font-size: 1.25rem;
   color: #555;
  margin-bottom: 2rem;
               line-height: 1.8;
}

.hero-cta {


  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding  :        1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight:     600;
  font-size: 1.1rem;
	 transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
	}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.hero-visual		{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
   height: 450px;
   position: relative;
	 overflow: hidden;
	
}

.hero-visual:after {
  content: '';
   position: absolute;
    top: -50%;
   right   : -50%;
   width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
   background-size: 50px 50px;
    animation: movePatterns 20s linear infinite;
}@keyframes movePatterns {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}.about-us {


    background: white;
   padding: 5rem 2rem;
    max-width: 1200px;
   margin: 0 auto;
     }

.about-us h2   {
   font-size: 2.8rem;
  color: #1e3c72;
     margin-bottom: 1.5rem;
  text-align: center;
}

.about-us > p {
    color: #666;
    text-align: center;
   margin:  0 auto 3rem;
    line-height: 1.8;
   max-width: 700px;
    font-size: 1.1rem;


}

.about-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap    :     2.5rem;
  margin-top: 3rem;
}

.about-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                    padding: 2.5rem;
  border-radius: 15px;
   transition: all 0.3s ease;
   border-left: 4px solid #667eea; 

}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-card h3 {

    color: #1e3c72;
    margin-bottom: 1rem;
  font-size: 1.5rem;

}  

.about-card p {
   color: #555;
      line-height: 1.7;
}

.services-overview {
  max-width: 1200px;
    padding: 5rem 2rem;
  margin: 0 auto;
}

.services-overview h2 {
    font-size: 2.8rem;
    color: #1e3c72;
          text-align: center;
   margin-bottom: 3.5rem;
}

.services-grid

{
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

   gap: 2.5rem;
}

.service-item {
  background: white;
          border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.service-item:hover {
	  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);


}

.service-item img {
	width: 100%;
    height: 250px;
  object-fit: cover;
    display: block;
}

.service-item h3 {
   font-size: 1.5rem;
   color: #1e3c72;
    padding: 2rem 2rem 1rem;
}

.service-item p {
  padding: 0 2rem 2rem;
   color     :      #666;
    line-height :       1.7;
}

.webinars {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color:      white;
   padding: 5rem 2rem;
   max-width: 1200px;
	 margin: 4rem auto;
  border-radius: 20px;
     }

.webinars h2 {
  font-size: 2.8rem;
    text-align: center;
   margin-bottom: 3rem;
   color: white;
}

.webinar-content {
	 display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
        align-items:      center;
}

.webinar-text h3


{


  font-size: 2rem;
    margin-bottom: 1.5rem;

}

.webinar-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
	 opacity: 0.95;
}

.webinar-image img {
  border-radius: 15px;
  width     :        100%;
   height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.coaching-programs {
    padding: 5rem 2rem;
   max-width:     1200px;
  margin: 0 auto;
}

.coaching-programs h2 {
  font-size: 2.8rem;
      color     :  #1e3c72;
  text-align: center;
  margin-bottom: 3.5rem; 
	
}

.programs-wrapper {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.program-card {
    background: white;
   padding: 2.5rem;
    border-radius: 15px;
  border-top    : 4px solid #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition:      all 0.3s ease;
}

.program-card:nth-child(2) {
  border-top-color:       #764ba2;
}

.program-card:nth-child(3)

{
   border-top-color: #f093fb;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.program-card h3 {
     color:       #1e3c72;
  margin-bottom: 1.2rem;
                    font-size: 1.6rem;
} 

.program-card p {
  color: #666;
    line-height: 1.7;
}

.success-stories {
  margin:   0 auto;
	   background: #f8f9fa;
	  padding: 5rem 2rem;
	  max-width: 1200px;
}

.success-stories h2 {
	font-size: 2.8rem;
   color: #1e3c72;
	text-align: center;
  margin-bottom:    1rem;
}

.section-intro {
  text-align: center;
    font-size: 1.1rem;
  color   : #666;
  margin-bottom: 3rem;
}

.stories-container		{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.story {

	   background: white; 
	  padding: 2.5rem; 
	  border-radius: 15px; 
	    border-left: 4px solid #667eea; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
	  transition: all 0.3s ease;


}

.story:nth-child(2) {
  border-left-color: #764ba2;
}

.story:nth-child(3) {
    border-left-color: #f093fb;
}

.story:hover
	{
  transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.story h4 {
    font-size:       1.4rem;
  color: #1e3c72;
	 margin-bottom: 1rem;
}

.story p {

   color: #666;
   line-height: 1.8;
    font-style: italic;
  margin-bottom: 1.5rem;
	}

.story-author{
   color: #999;
   font-size: 0.95rem;
    font-style  :  normal;
}


.cta-section {
  padding: 4rem 2rem;
    margin: 4rem auto;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem;
       border-radius: 20px;
   text-align   : center;
  color   :        white;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  color  :   white;
}

.cta-box p {
       font-size: 1.15rem;
	margin-bottom   :  2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
                    display: inline-block;

	   background: white;

	  color: #667eea;

	  padding: 1rem 2.5rem;

	  border-radius: 50px;

	    text-decoration: none;

	   font-weight: 600;

	   font-size: 1.1rem;

		 transition: all 0.3s ease;

	  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.contact {
   padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h2 {
   font-size: 2.8rem;
    color     :    #1e3c72;
   text-align: center;
   margin-bottom: 1rem;
}

.contact-container > p {
    text-align :        center;
   color: #666;
   font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-form {
   background: white;
    padding: 3rem;
     border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}  

.form-group {
    margin-bottom: 1.8rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
       padding: 1rem;
   border: 2px solid #e0e0e0;
  border-radius: 8px;
   font-family: inherit;
   font-size: 1rem;
    transition: all 0.3s ease;
	background: white;
   color     :     #2c3e50; 

}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
	border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
   background: #f8fbff;
} 

.contact-form select {
 cursor: pointer;
}

.contact-form textarea {
   resize: vertical;
  min-height: 150px;
}


.submit-btn {
    width: 100%;
   padding: 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
 border: none;
	 border-radius: 8px;
    font-size: 1.1rem;
   font-weight: 600;
     cursor: pointer;
   transition     :   all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
	
}

.submit-btn:active {
  transform: translateY(0);
}

.footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	 color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;

	  margin :      0 auto;

	    display: grid;

	  grid-template-columns    :  1fr 3fr;

	    gap   :   3rem;

	   align-items:flex-start;
}

.footer-brand {
       text-align: center;



}


.footer-logo {
	height: 96px;
   width: auto;
  filter: brightness(0) invert(1);
         margin-bottom: 1.5rem;
}

.footer-info {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.footer-section h4 {
  font-size :    1.2rem;
   margin-bottom: 1rem;
    color    :      #ffc107;
}

.footer-section p {

    margin-bottom: 0.8rem;
   opacity     :0.9;
   line-height: 1.6;
	}

.phone-number {
    font-size: 1.1rem;
  color: white;
	 font-weight:   600; 

}

.footer-links {
    list-style: none;
}

.footer-links li
	{
   margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
  color: white;
   transition: all 0.3s ease;
	opacity: 0.85;
}

.footer-links a:hover {
   opacity: 1; 
   color :        #ffc107; 
  padding-left: 0.5rem;
}

.footer-section:last-child p {
	        opacity: 0.7;
   font-size: 0.95rem;}

.cookie-alert {
  position: fixed;
   bottom: 0;
    left :      0;
    right    :   0;
    background: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
      z-index: 999;
   max-width: 100%;
    display: none;
}

.cookie-alert.show


{
   display: block;
          animation: slideUp 0.3s ease;
}@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}.cookie-content {
    max-width:   1200px;
 margin: 0 auto;
                    display: flex;
   justify-content: space-between;
	align-items: center;
   gap: 2rem;
	
}


.cookie-content p {
   flex: 1;
   color: #333;
  font-size: 0.95rem;
  margin: 0;


}

.cookie-buttons {
    display: flex;
    gap: 1rem;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject,
.cookie-settings {
	 border-radius: 6px;
  transition: all 0.3s ease;
 font-weight: 600;
  border: none;
  padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
   cursor: pointer;
}

.cookie-accept {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;


}

.cookie-accept:hover		{
  transform: translateY(-2px);
  -ms-transform: translateY(-2px);
}

.cookie-reject {

	  background  :  #f0f0f0; 
	color: #333; 
  border: 1px solid #ddd;
}

.cookie-reject:hover {
    background: #e0e0e0;
}

.cookie-settings {
    background: white;
  color: #667eea;
    border: 2px solid #667eea;
}

.cookie-settings:hover {
		background:#f8fbff;
}

.cookie-modal   {
	    display: none;
  position: fixed;
  z-index: 1001;
    left: 0;
    top: 0;
   width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
	}  

.cookie-modal.show {
	 display: flex; 
	    align-items: center; 
	  justify-content: center;
}  

.cookie-modal-content {
  background  :        white;
   padding: 2.5rem;
  border-radius: 15px;
  max-width: 500px;
    width  :90%;
	position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-close {
 position: absolute;
  right    :      1.5rem;
   top: 1.5rem;
    font-size: 2rem;
   font-weight: bold;
   color: #999;
    cursor   :      pointer;
    transition: color 0.3s ease;
}

.cookie-close:hover {
               color: #333;
}

.cookie-modal-content h3 {


  margin-bottom: 1.5rem;
    color: #1e3c72;
    font-size     :      1.5rem;




}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {


  display  :      flex;
   align-items: center;
   margin-bottom: 1.2rem;
  cursor: pointer;
  user-select   :        none;

}

.cookie-option input[type="checkbox"] {
	 width  :     20px;
      height   :   20px;
   margin-right: 1rem;
  cursor: pointer;
   accent-color :#667eea;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
	 opacity: 0.6;
}



.cookie-option span 
 {
  color    :   #666;
    line-height: 1.5;
}

.cookie-save {

    width    :100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :     white;
  border: none;
   border-radius: 8px;
    font-size:      1rem;
   font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;


}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
    }

    .webinar-content {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .cta-box {
        padding: 2.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-overview h2,
    .coaching-programs h2,
    .success-stories h2 {
        font-size: 2rem;
    }

    .about-us h2 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject,
    .cookie-settings {
        width: 100%;
    }

    .programs-wrapper,
    .stories-container,
    .services-grid {
        grid-template-columns: 1fr;
    }
}.services-hero {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :   white;
  padding:     5rem 2rem;
   text-align: center;
          margin-top: 80px;}

.services-hero-content h1 {
		font-size: 3.2rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
     }

/* Development only */

	/* Auto-generated CSS */
/* Vendor-specific */


.services-hero-content p {


	 line-height: 1.8; 
	                    opacity: 0.95; 
	   font-size  :      1.2rem; 
	   margin: 0 auto; 
	  max-width    :   700px;}

.services-container {
   max-width: 1200px;
  margin   :        0 auto;
   padding: 0 2rem;
}

.services-detailed {

	  padding: 5rem 2rem;
   background: white; 
	
	}

.service-card-detailed {
    display:       grid; 
  grid-template-columns   :      1fr 1fr; 
   gap: 4rem; 
  align-items: center; 
    margin-bottom: 5rem; 
   background   :     white; 
   border-radius: 15px; 
    overflow: hidden; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
   padding: 3rem;
}  

.service-card-detailed:nth-child(even) {
	grid-template-columns: 1fr 1fr;
}

.service-card-detailed:nth-child(even) .service-image {


   order: 2;


}

.service-card-detailed:nth-child(even) .service-content	{
    order: 1;
}

/* Minified version */


	/* Colors and backgrounds */
.service-image {
	border-radius     :        12px;
   overflow: hidden;
}

.service-image img {
  transition: transform 0.3s ease;
    width: 100%;
   height: auto;
  display: block;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Cross-browser fix */


.service-content h2 {
    font-size: 2.2rem;
  color: #1e3c72;
    margin-bottom: 1.5rem;
}

.intro-text


{
   font-size :  1.1rem;
    color: #555;
   margin-bottom: 2rem;
    line-height: 1.8;
   font-weight: 500;
}

.service-content h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
	color: #1e3c72;
   font-size: 1.4rem;
}

.features-list,
.benefits-list {
   list-style: none;
	 margin-bottom: 1.5rem;
}

.features-list li,
.benefits-list li {
  padding: 0.8rem 0 0.8rem 2rem;
        position: relative;
        color: #666;
    line-height: 1.6;
}

.features-list li:before,
.benefits-list li:before {
  content: '✓';
    position: absolute;
  left: 0;
   color: #667eea;
 font-weight: 700;
  font-size: 1.2rem;
}

.duration,
.price {
	 margin-top    : 2rem;
    font-size: 1.05rem;
    color: #333;
    font-weight: 500; 
	
}

.price {
  color: #667eea;
    font-size: 1.3rem;
  font-weight   : 600;
}

.webinar-services {
   padding: 5rem 2rem;
   background: #f8f9fa;
   max-width: 1200px;
  margin: 0 auto;
}

.webinar-services h2 {
  font-size: 2.8rem;
   color: #1e3c72;
   text-align: center;
  margin-bottom: 3rem;
}

/* NOTE: keep for legacy support */

.webinar-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.webinar-card {
   background: white;
   padding: 2.5rem;
    border-radius  :      15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   border-top: 4px solid #667eea;
 transition: all 0.3s ease;
}

.webinar-card:nth-child(2) {
					border-top-color:        #764ba2;
}

.webinar-card:nth-child(3)  {
 border-top-color: #f093fb;
}

.webinar-card:hover


{
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.webinar-card h3 {
	  font-size     :    1.6rem;
      color: #1e3c72;
    margin-bottom: 1rem;


} 

.webinar-card p {
	 color: #666;
   line-height  :       1.7;
	 margin-bottom: 1rem;
	}

.webinar-price
	{
  font-size :     1.3rem;
   color: #667eea;
	font-weight: 600;
   margin: 1.5rem 0;
}

.webinar-list{
  list-style: none;
}

.webinar-list li {
  padding: 0.6rem 0 0.6rem 2rem;
                    position: relative;
  color: #666;
	 font-size: 0.95rem;
}

.webinar-list li:before {
  content: '•';

		position   :   absolute;

	    left: 0;

	   color: #667eea;

	  font-weight: 700;
}  

.coaching-programs-detail {
    padding: 5rem 2rem;
 max-width: 1200px;
   margin: 0 auto;
}

.coaching-programs-detail h2 {
  font-size: 2.8rem; 
    color: #1e3c72; 
    text-align    :center; 
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: #666;
   font-size: 1.1rem;
  margin-bottom: 3rem;
}
	/* Generated styles */
.programs-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.5rem;
}

.program-detail {
      background: white;
  padding: 2.5rem;
   border-radius    :  15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	 border-left: 5px solid #667eea;
  transition: all 0.3s ease;


}

.program-detail:nth-child(2) {
	 border-left-color: #764ba2;
}

.program-detail:nth-child(3) {
		 border-left-color: #f093fb;}

.program-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
/* Production ready */

/* Colors and backgrounds */
.program-header {
   display: flex;

   justify-content: space-between;

   align-items: center;

   margin-bottom: 1rem;
}

.program-detail h3 {
  font-size: 1.6rem;
                    color: #1e3c72;}

.program-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
   font-size: 0.85rem;
   font-weight: 600;
}
/* FIXME: IE11 compatibility */

.program-detail > p {


	color     :  #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;}

.program-info {
	 background: #f8f9fa;
    padding: 1.5rem;
	border-radius: 10px;
    margin-bottom: 1.5rem;
}

.info-item {
   	display: flex;
   justify-content: space-between;
  padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
	}

.info-item:last-child {

	    border-bottom: none;
}

.info-label {
  font-weight: 600;
	color: #1e3c72;
}

.info-value    {
   color:        #667eea;
   font-weight    :   500;
}


.program-detail h4 {
  font-size: 1.1rem;
  color: #1e3c72;
   margin-top: 1.5rem;
	 margin-bottom: 0.8rem;

}

.program-includes  
  {
   list-style: none;
}

.program-includes li {
          padding :  0.6rem 0 0.6rem 2rem;
  position: relative;
  color: #666;
	font-size: 0.95rem;
    line-height: 1.5;
}

.program-includes li:before  {
  content: '✓';
  position:       absolute;
   left: 0;
	color: #667eea;
   font-weight: 700;
	
}

.pricing-comparison {
    padding: 5rem 2rem;
   background: #f8f9fa;
  max-width: 1200px;
    margin: 0 auto;
}

.pricing-comparison h2 {
   font-size: 2.8rem;
  color  :#1e3c72;
  text-align: center;
	 margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.pricing-table {
        width: 100%;
  background: white;
    border-collapse: collapse;
    border-radius   :     12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
	
}
	/* Minified version */


/* Cross-browser fix */

.pricing-table th
{
   padding:    1.5rem;
    text-align: left;
	font-weight: 600;
   font-size  :    1.05rem;
}
/* Minified version */
.pricing-table td {
   padding: 1.5rem;
     border-bottom: 1px solid #e0e0e0;
  color: #666;

}

/* Responsive design */


.pricing-table tbody tr:hover {
  background: #f8fbff;
}  

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.why-choose-us {
   padding: 5rem 2rem;
   max-width: 1200px;
  margin: 0 auto; 
	
}

.why-choose-us h2 {
   color: #1e3c72;
	    font-size: 2.8rem;
	    margin-bottom :      3.5rem;
	  text-align: center;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.choose-card {
    background: white;
    padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	 border-top   :        4px solid #667eea;
    transition: all 0.3s ease;
}

.choose-card:nth-child(2) {

	  border-top-color: #764ba2;}

/* NOTE: keep for legacy support */

.choose-card:nth-child(3) {
    border-top-color: #f093fb;
}

.choose-card:nth-child(4) {
	border-top-color: #667eea;
}

.choose-card:nth-child(5) {
  border-top-color: #764ba2;
}

.choose-card:nth-child(6) {
    border-top-color: #f093fb;
}
/* Hack for old browsers */
/* Layout styles */
/* TODO: optimize for mobile */


.choose-card:hover  
  {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.choose-card h3 {
   font-size: 1.5rem;
  color: #1e3c72;
    margin-bottom: 1rem;
}

.choose-card p 
 {
   color: #666;
	line-height: 1.7;
}

.services-cta {
  padding    :      4rem 2rem;
  margin  :3rem auto;
}

.services-cta-content {

  max-width: 700px;
   margin: 0 auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem;
   border-radius: 20px;
    text-align: center;
    color: white;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);

}
	/* Experimental feature */

	/* Temporary fix */

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  color: white;
}

.services-cta-content p {
   font-size     :1.15rem;
   margin-bottom: 2rem;
    opacity: 0.95;
   line-height: 1.6;
}
/* Responsive design */


.services-cta-btn {
  display: inline-block;
    background: white;
  color: #667eea;
   padding: 1rem 2.5rem;
 border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
   font-size: 1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services-cta-btn:hover {


  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);}

.thankyou-container     {
   min-height: 100vh;
   padding  :        5rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
   margin-top: 80px;
}

.thankyou-content {
  max-width: 800px;
   margin: 0 auto;
  background  :   white;
					padding: 4rem;
   border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   text-align: center;
}

/* Browser compatibility */


.success-icon {
  width: 120px;
    height: 120px;
     margin:     0 auto 2rem;
}

.success-icon svg {

   width     :        100%;
   height: 100%;
	animation: successBounce 0.6s ease;
     }
@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
  font-size: 2.8rem;
    color:        #1e3c72;
  margin-bottom: 1.5rem;
}

.thankyou-message {
    font-size: 1.15rem;
   color: #666;
                    line-height: 1.8;
    margin-bottom: 3rem;
}

.thankyou-info {
	 background: #f8f9fa;

                    padding: 3rem;

  border-radius: 15px;

   margin: 2rem 0;
}

.thankyou-info h2

{
	font-size: 2rem;
   color: #1e3c72;
   margin-bottom: 2rem;
}

.steps {

		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
	}

.step {
  background: white;
  padding: 2rem;
    border-radius     :   12px;
    text-align: center;
	border-top: 3px solid #667eea;
}

.step:nth-child(2) {
    border-top-color: #764ba2;
}

.step:nth-child(3) {
  border-top-color: #f093fb;


}

.step:nth-child(4) {

    border-top-color: #667eea;

}

.step-number
	{
       display: inline-block;
    width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius    :  50%;
   line-height: 50px;
  font-size: 1.5rem;
   font-weight: 700;
	margin-bottom:  1rem;

	}

.step-content h3  {
  font-size    :1.2rem;
  color   : #1e3c72;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
         line-height: 1.6;
}

.contact-info-box {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: white;

    padding: 2.5rem;

    border-radius: 15px;

   margin: 2rem 0;
     }

.contact-info-box h3 {
   font-size:  1.8rem;
  margin-bottom: 1rem;
	
}

.contact-info-box p
{
      font-size: 1.05rem;
    margin-bottom :  0.8rem;
  opacity: 0.95; 

     }

.contact-phone {
     font-size: 1.4rem;
    color: #ffc107;
  margin    :      1rem 0;


}

.thankyou-buttons {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
   margin: 2rem 0;

}

.btn-primary,
.btn-secondary {
	 padding: 1.2rem 2rem;
    border-radius  :  50px;
   text-decoration: none;
    font-weight: 600;
   font-size: 1.05rem;
  transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
     box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background:    white;
    color: #667eea;
       border: 2px solid #667eea;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.btn-secondary:hover {
    background: #f8fbff;
  transform: translateY(-3px);
}

.faq-section	{
   background: #f8f9fa;
  border-radius  :       15px;
  padding: 2.5rem;
    text-align     :   left;
   margin-top:    2rem;
}

.faq-section h3 {
	font-size: 1.8rem;
     margin-bottom: 2rem;
  color: #1e3c72;
    text-align: center;
}

.faq-items {
    display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
  background     :  white;
    padding: 1.5rem;
               border-radius: 12px;
  border-left: 4px solid #667eea;
}

.faq-item:nth-child(2) {
   border-left-color: #764ba2;
}

.faq-item:nth-child(3) {

         border-left-color: #f093fb;
	

}

.faq-item:nth-child(4) {
    border-left-color: #667eea;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: #1e3c72;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
   line-height  :  1.6;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-card-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .service-card-detailed:nth-child(even) .service-image,
    .service-card-detailed:nth-child(even) .service-content {
        order: unset;
    }

    .webinar-grid {
        grid-template-columns: 1fr;
    }

    .programs-detailed {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .thankyou-buttons {
        grid-template-columns: 1fr;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }

    .service-card-detailed {
        padding: 1.5rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .contact-info-box {
        padding: 1.5rem;
    }

    .faq-section {
        padding: 1.5rem;
    }
}.policySection		{
   padding: 120px 2rem 5rem;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
   min-height: 100vh;
}

.policyContainer    {
  max-width: 850px; 
  margin: 0 auto; 
                    text-align :left;
}

.policyContainer h1 {
  font-size: 3rem;
  color    :     #1e3c72;
   margin-bottom    :      3rem;
  font-weight: 700;
		 text-align: center;


}

.policyContainer h2 {


 font-size: 2rem;
   color: #1e3c72;
       margin-top: 2.5rem;
    margin-bottom: 1.5rem;
	 font-weight: 600;
    border-bottom : 3px solid #667eea;
  padding-bottom: 0.8rem;


}

.policyContainer p   {
       color: #555;
   margin-bottom: 1.5rem;
   line-height: 1.8;
   font-size: 1.05rem;
	text-align: justify;}

.policyContainer strong {
    color: #1e3c72;
   font-weight: 600;
}  

.policyContainer a 
 {
      color: #667eea;
	text-decoration: none;
    transition:   all 0.3s ease;
}

.policyContainer a:hover {


  color: #764ba2;
    text-decoration: underline;


}@media (max-width: 1024px) {
    .policySection {
        padding: 100px 2rem 4rem;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 90px 1.5rem 3rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 80px 1rem 2rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}