* {
   margin: 0;
   padding: 0;
    box-sizing: border-box;
}

html, body {
	 width: 100%;
   height: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color: #2c3e50;
    background-color: #ffffff;
}

a {
   text-decoration: none;
   color: inherit;
                    transition: all 0.3s ease;
}

.navbar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 0;
	position:       sticky;
               top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
}

.nav-container  
  {
   max-width: 1200px;
    margin: 0 auto;
       padding: 0 20px;
   display: flex;
    justify-content: space-between;
  align-items: center;
    height: 70px;
}

.logo-section 
 {
  display: flex;
   align-items: center;
}

.logo {
    height: 94px;
   width: auto;
  filter: brightness(0) invert(1); 
	
}

.burger-menu {
   display: none;
    background: transparent;
   border: none;
   cursor: pointer;
   width: 40px;
  height  :       40px;
   align-items: center;
   justify-content: center;
}

.burger-menu img {
   width: 28px;
  height     :28px;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
	  list-style: none;
	   gap: 40px;
	  align-items: center;
}

.nav-menu a {
    color: #ffffff;
   font-weight: 500;
   position: relative;
  padding-bottom   :   5px;
}



.nav-menu a::after {
  content: '';
	position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
     height: 2px;
   background: #ffc107;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hero-section {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
  padding: 100px 40px;
    max-width: 1400px;
  margin: 0 auto;
      align-items: center;
}

.hero-content h1 {
   font-size: 3.5rem;
  font-weight: 700;
   color: #1e3c72;
   line-height: 1.2;
    margin-bottom :     30px;
}



.hero-content p {

   font-size: 1.2rem;
   color: #555;
    margin-bottom: 40px;
  line-height: 1.8;

}

.cta-button {
   display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #1e3c72;
	 font-weight: 600;
  border-radius   :        50px;
  font-size:        1.1rem;
	transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.hero-image img {
  width: 100%;
	height: auto;
	border-radius: 15px;
  box-shadow: 0 20px 50px rgba(30, 60, 114, 0.15);
}

.section-expertise {
    padding: 80px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.section-expertise .content-wrapper{
   max-width: 1200px;

	  margin: 0 auto;

	   display: grid;

	  grid-template-columns: 1.2fr 1fr;

	   gap: 60px;

	   align-items     : center;
}

.section-expertise h2 {
   font-size: 2.8rem;
  color: #1e3c72;
   margin-bottom: 30px;
  font-weight: 700;
}

.text-block p {
   font-size: 1.05rem;
          color: #555;
    margin-bottom: 25px;
   text-align: justify;
  line-height: 1.9;
}

.image-block img {
   width: 100%;
  height: auto;
	border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}



.section-programs {
    padding: 100px 40px; 
	    max-width: 1400px; 
	    margin: 0 auto;
}

.section-programs h2 {
  font-size    :2.8rem;
  color: #1e3c72;
               text-align: center;
    margin-bottom: 70px;
  font-weight: 700;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 40px;


}

.program-card	{
   background: #ffffff;
    padding: 50px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
    border-top: 5px solid #ffc107;
   transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30, 60, 114, 0.2);
}

.program-card h3 {
    font-size: 1.5rem;
   color:       #1e3c72;
   margin-bottom: 20px;
   font-weight  : 600;
}

.program-card p {

    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

.features-list
	{
  list-style: none;

	    padding: 0;
}

.features-list li {
    color: #555;
  margin-bottom: 15px;
   padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-list li::before {
  content: '✓';
   position: absolute;
   left: 0;
  color: #ffc107;
    font-weight: bold;
   font-size: 1.2rem;
}

.section-mentoring {

    padding: 90px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.section-mentoring .mentoring-layout {
   max-width: 1300px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1.15fr;
	gap: 60px;
  align-items: center;
}

.mentoring-image img {
    width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 45px rgba(30, 60, 114, 0.15);
}

.mentoring-text h2 {
       font-size: 2.8rem;
    color: #1e3c72;
   margin-bottom: 30px;
   font-weight: 700;
}

.mentoring-text p     {
    color     :       #666;
   margin-bottom: 25px;
   line-height: 1.85;
   font-size: 1.05rem;
}

.mentor-benefits   {
      margin-top: 40px; 
  gap: 20px; 
  display: grid; 
    grid-template-columns: 1fr 1fr;


}

.benefit {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    padding: 20px;
	 border-radius: 10px;
    color: #1e3c72;
   font-weight: 500;
   text-align: center;
 font-size: 0.95rem;
}

.section-webinars {
   padding: 100px 40px;
    max-width: 1300px;
        margin: 0 auto;
}

.section-webinars h2 {
   font-size     :  2.8rem;
    color: #1e3c72;
   text-align: center;
    margin-bottom: 30px;
    font-weight: 700;

}

.section-intro {
    text-align: center;
  font-size: 1.1rem;
  color: #666;
    margin-bottom: 60px;
	 max-width:700px;
  margin-left: auto;
   margin-right:    auto;
}

.webinar-container {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
	
}

.webinar-item {
 background: #ffffff;
       padding: 40px;
   border-radius: 12px;
    border-left  : 5px solid #1e3c72;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.08);
  transition: all 0.3s ease;
}

.webinar-item:hover {
  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
  transform: translateX(5px);
	
}

.webinar-item h3 {
  font-size: 1.4rem;
   color     :  #1e3c72;
   margin-bottom: 15px;
   font-weight: 600;
}

.webinar-item p {
   color: #666;
    margin-bottom: 20px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.webinar-meta {
    color : #999;
  font-size: 0.85rem;
    font-style: italic;
}  

.section-success {
  padding:      100px 40px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
}

.section-success h2 {
   font-size: 2.8rem;
    text-align: center;
	 margin-bottom: 25px;
    font-weight: 700;
}

.success-intro {
   font-size: 1.1rem;
  margin-bottom: 60px;
   opacity: 0.95;
    text-align: center;
}

.success-stats {
  max-width: 1200px;
    margin: 0 auto;
   display:   grid;
  grid-template-columns: repeat(4, 1fr);
                    gap: 30px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
    border-radius   : 12px;
    text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
   font-size: 3rem;
    font-weight:      700;
    color: #ffc107;
   margin-bottom: 15px;
}

.stat-label {
  font-size: 1rem;
	line-height: 1.6;
  opacity: 0.95;
}

.section-coaching {
    background: #f9fafb;
   padding: 100px 40px;
}

.section-coaching .coaching-wrapper {
	max-width: 1300px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1.1fr;
   gap: 60px;
          align-items: center;
}

.coaching-image img {
    width  : 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 45px rgba(30, 60, 114, 0.15);
}

.coaching-content h2{
         font-size: 2.8rem;

    color: #1e3c72;

    margin-bottom: 30px;

          font-weight: 700;
}

.coaching-content p {
	 color: #666;
       margin-bottom     :  25px;
   line-height: 1.85;
   font-size: 1.05rem;
}

.coaching-features  {
   display: grid;

   grid-template-columns: 1fr 1fr;

   gap: 20px;

    margin-top: 40px;
}

.feature-item {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  padding: 20px;
    border-radius: 10px;
    color: #1e3c72;
    font-weight: 500;
   border-left: 4px solid #ffc107;
   font-size: 0.95rem;
}

.section-approach{
    padding: 100px 40px;
    max-width: 1300px;
   margin: 0 auto;
}

.section-approach h2 {
    font-size: 2.8rem;
     color: #1e3c72;
    margin-bottom: 70px;
  font-weight:      700;
   text-align: center;
}

.approach-grid		{
   display: grid; 
  grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
}

.approach-card {
   background: #ffffff;
  padding: 45px;
	border-radius  :       15px;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.08);
    border: 2px solid #f0f0f0;
   transition: all 0.3s ease;
}

.approach-card:hover

{
  border-color: #ffc107;
  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
}

.approach-card h3 {
   font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 20px;
	font-weight: 600;
}  

.approach-card p {
   color    :       #666;
  line-height: 1.8;
    font-size: 0.95rem;
}

.section-cta-primary {
 padding: 80px 40px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-weight: 700;
	margin-bottom: 25px;
  color  : #1e3c72;
    font-size: 2.8rem;
}

.cta-box p {
    font-size: 1.15rem;
    color: #1e3c72;
    margin-bottom: 40px;
  line-height: 1.8;
}

.cta-button-large {
         display: inline-block;
	 padding: 18px 50px;
  background: #1e3c72;
  color: #ffc107;
   font-weight: 600;
   border-radius: 50px;
    font-size  :1.15rem;
   transition :     all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 60, 114, 0.4);
}

.section-testimonials {
   padding: 100px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.section-testimonials h2 {
    font-size: 2.8rem;
    color: #1e3c72;
   text-align: center;
    margin-bottom: 70px;
  font-weight :       700; 

}

.testimonials-grid {
  max-width: 1300px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap:     35px;
}

.testimonial		{
  background: #ffffff;
  padding: 40px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.08);
    border-top: 4px solid #ffc107;
    transition: all 0.3s ease;

     }

.testimonial:hover {
	  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
  transform: translateY(-5px);

}

.quote 
 {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.85;
   margin-bottom: 25px;
   font-style: italic;
}

.testimonial-author {
  color: #1e3c72;
    font-size: 0.95rem;
   font-weight: 600;
}

.section-about {
   padding    :      100px 40px;
         max-width: 1100px;
    margin: 0 auto;
}

.section-about h2 {
    font-size: 2.8rem;
    color: #1e3c72;
    margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
}

.about-content p {
  line-height: 1.9;
   text-align: justify;
   margin-bottom: 30px;
  color: #666;
  font-size: 1.05rem;
}

.section-contact {
     padding: 100px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);

}

.contact-wrapper {
   max-width: 700px;
  margin: 0 auto;
}

.section-contact h2 {
  font-size: 2.8rem;
	  color: #1e3c72;
	  text-align: center;
	    margin-bottom: 25px;
		 font-weight :        700;
}

.contact-intro {
   text-align: center;
  color: #666;
  margin-bottom: 50px;
   font-size: 1.05rem;
}

.contact-form {
   display: grid;
             gap: 25px;
}

.form-group {
   display: flex;
}

.form-group input,
.form-group select,
.form-group textarea 
 {
  width: 100%;
   padding: 15px;
    border: 2px solid #e0e0e0;
        border-radius    :      8px;
  font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
	   color: #aaa;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

  outline: none;
    border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-submit {
   padding     :     16px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
   color: #1e3c72;
    font-weight:      600;
    border: none;
       border-radius: 8px;
   cursor: pointer;
    font-size: 1.05rem;
   transition: all 0.3s ease;
  margin-top: 15px;
}

.form-submit:hover {
	  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
	}

.footer-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 60px 40px;
    color: #ffffff;
}

.footer-container {


	 max-width: 1300px;
	 margin  :    0 auto;
 display    :  grid;
   grid-template-columns: 1fr 1fr 1.1fr 1.4fr;
    gap: 50px;
    align-items: flex-start;

}  

.footer-logo-img {
  height: 136px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
   font-weight: 600;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.85);
   margin-bottom   :  12px;
  font-size: 0.95rem;
   line-height: 1.6;
}

.phone-contact {
  font-weight: 600;
   color: #ffc107;
    font-size: 1rem;
}

.footer-links ul {
   list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);

	               transition: all 0.3s ease;

	  font-size: 0.95rem;
}

.footer-links a:hover {
   color: #ffc107;
   padding-left: 5px;
}

.copyright {
  color: rgba(255, 255, 255, 0.75);
   font-size: 0.85rem;
	line-height: 1.6;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        flex-direction: column;
        gap: 15px;
        padding: 30px 20px;
        display: none;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 10px 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-expertise .content-wrapper {
        grid-template-columns: 1fr;
    }

    .section-expertise h2 {
        font-size: 2rem;
    }

    .section-programs {
        padding: 60px 20px;
    }

    .section-programs h2 {
        font-size: 2rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-mentoring .mentoring-layout {
        grid-template-columns: 1fr;
    }

    .section-mentoring h2 {
        font-size: 2rem;
    }

    .mentor-benefits {
        grid-template-columns: 1fr;
    }

    .webinar-container {
        grid-template-columns: 1fr;
    }

    .success-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-coaching .coaching-wrapper {
        grid-template-columns: 1fr;
    }

    .coaching-features {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }

    .footer-logo-img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .logo {
        height: 70px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-programs h2,
    .section-expertise h2,
    .section-mentoring h2,
    .section-approach h2,
    .section-contact h2,
    .cta-box h2 {
        font-size: 1.6rem;
    }

    .program-card {
        padding: 30px 20px;
    }

    .approach-card {
        padding: 25px;
    }

    .success-stats {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}.services-hero {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
   align-items: center;
}

.services-hero-content h1 {

  font-size: 3.5rem;
   font-weight: 700;
   color: #1e3c72;
    line-height: 1.2;
	 margin-bottom     : 30px;


}

.services-hero-content p {
  font-size: 1.2rem;
  color: #555;
   margin-bottom   :  40px;
	line-height :    1.8;
}

.services-hero-image img {
    width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(30, 60, 114, 0.15);
}

.services-navigation {
  padding: 60px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  text-align:     center;
}

.services-navigation h2 {

	    font-size   :       2.8rem;
   color: #1e3c72;
  margin-bottom: 50px;
  font-weight: 700;
	}

.services-tabs {

	  max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
   gap: 15px;


}

.tab-btn {
    font-size: 0.95rem;
  border-radius: 10px;
  cursor: pointer;
      transition: all 0.3s ease;
   font-weight :    600;
    background: #ffffff;
   padding: 16px 20px;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
}

.tab-btn:hover {
     border-color: #ffc107;
  color: #ffc107;
}

.tab-btn.active {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1e3c72;
   border-color: transparent;
}

.services-content {
  max-width: 1400px;
   margin: 0 auto;
   padding: 80px 40px;
}

.service-detail {
    display  :   none;
}

.service-detail.active {
   display: block;
   animation: fadeIn 0.3s ease;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.service-layout {
	    display     :       grid;
    grid-template-columns: 1.2fr 1fr;
   gap: 60px;
    align-items: flex-start;
	}

.service-text h2 {
    font-size: 2.8rem;
    color :#1e3c72;
    margin-bottom: 30px;
   font-weight: 700;
}

.service-text p   {
  color: #666;
    margin-bottom :  25px;
      line-height: 1.9;
   font-size  :  1.05rem;
    text-align: justify;
}

.service-features {
       margin: 50px 0;

}

.service-features h3 {
  font-size: 1.8rem;
    color: #1e3c72;
   margin-bottom: 35px;
    font-weight    : 600;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-tile {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius :12px;
  border-left: 4px solid #ffc107;
    transition   :        all 0.3s ease;
}

.feature-tile:hover {
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.15);
  transform: translateY(-5px);
}

.feature-icon {
  display: inline-block;
   font-size  :        1.8rem;
  font-weight: 700;
	 color: #ffc107;
   margin-bottom     :      15px;
}

.feature-tile h4 {

	   font-size: 1.1rem;
   color: #1e3c72;
  margin-bottom   :      12px;
  font-weight    :    600;
}

.feature-tile p {
	    font-size: 0.9rem;

	   color: #666;

	  margin: 0;

	               line-height:   1.6;


}

.service-options {
    margin: 50px 0;
}

.service-options h3 {
    font-size: 1.8rem;
    margin-bottom: 35px;
    font-weight: 600;
    color: #1e3c72;
}

.options-grid {
    display     :        grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.option-card {
         background: #ffffff;
   padding: 35px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.08);
  transition: all 0.3s ease;
}

.option-card:hover {
    border-color  : #ffc107;
  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
  transform: translateY(-5px);
}

.option-card h4 {
   font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 15px;
   font-weight: 600;
}

.option-price {
  font-size : 1.2rem;
   color: #ffc107;
   font-weight   :     700;
  margin-bottom: 15px;
}

.option-card p {
   color: #666;
   font-size: 0.95rem;
  line-height: 1.7;
   margin-bottom: 25px;
}

.option-link {
   display: inline-block;
    padding:       12px 30px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   color: #ffc107;
    font-weight     :        600;
    border-radius: 8px;
	 transition: all 0.3s ease;
}

.option-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
}

.service-image    {
    position     :       sticky;
  top: 100px;
}

.service-image img {
	    width: 100%;
   height: auto;
                    border-radius: 15px;
  box-shadow: 0 20px 45px rgba(30, 60, 114, 0.15);
	}



.webinars-list {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap   :25px;
}

.webinar-card {
   background     :       #ffffff;
       padding: 35px;
   border-radius: 12px;
   border-left: 5px solid #1e3c72;
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.08);
    transition  : all 0.3s ease;
}

.webinar-card:hover {
  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
  transform: translateX(5px);
}

.webinar-card h4 {
   font-size: 1.2rem; 
 color: #1e3c72; 
  margin-bottom: 15px; 
    font-weight: 600;
}

.webinar-card p {
  color: #666;
  font-size: 0.95rem;
   line-height: 1.7;
    margin-bottom: 20px;
}

.webinar-meta {

   color  :#999;
   font-size: 0.85rem;
   font-style: italic;
	}

.comparison-section {
    padding: 100px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.comparison-section h2 {
   font-size: 2.8rem;
    color: #1e3c72;
  text-align: center;
	margin-bottom: 60px;
  font-weight: 700;
}

.comparison-table {
    max-width: 1300px;
  margin: 0 auto;
   background: #ffffff;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
}

.comparison-header,
.comparison-row {
	 display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
               border-bottom: 2px solid #e0e0e0;
}

.comparison-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-bottom: none;
}

.comparison-cell {
  padding: 20px;
  text-align: center;
      font-size: 0.95rem;
}

.comparison-header .comparison-cell {
  color  :#ffffff;
    font-weight: 600;
}

.comparison-row .comparison-cell:first-child {
  text-align: left;
	font-weight: 600;
    color: #1e3c72;


} 

.comparison-row:nth-child(even) {
    background: #f9fafb;
}

.comparison-cell.check

{
    color: #ffc107;
    font-weight: 700;
	 font-size: 1.2rem;
}

.services-cta {
  padding: 80px 40px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
   text-align: center;
}

.services-cta h2 {
  font-size: 2.8rem;
   color: #1e3c72;
    margin-bottom: 25px;
    font-weight  :   700; 
	}

.services-cta p {
    font-size: 1.15rem;
   color:        #1e3c72;
   margin-bottom: 40px;
  line-height: 1.8;
}

.thankyou-hero {
   padding: 100px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   min-height: 100vh;
    display: flex;
   align-items     :  center;
}

.thankyou-container {
  max-width: 900px;
   margin: 0 auto;
  text-align: center;
}

.thankyou-icon {


    margin-bottom: 30px;
}

.thankyou-icon img {
   width: 100px;
    height: 100px;
  filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.5));
}

.thankyou-hero h1 {
	 margin-bottom: 15px;
   font-weight: 700;
  color: #1e3c72;
  font-size: 3.5rem;
}

.thankyou-subtitle {

	    font-size: 1.5rem;
     color: #ffc107;
  margin-bottom: 40px;
  font-weight: 600;
     }

.thankyou-message		{
  background: #ffffff;
	 padding: 40px;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
	margin-bottom :    50px;
   text-align: left;
}

.thankyou-message p
	{
	color: #666;
    margin-bottom: 20px;
     line-height: 1.8;
    font-size: 1.05rem; 
	
}

.thankyou-message p:last-child {
    margin-bottom: 0; 
	
}

.application-summary	{

	  background: #ffffff;
   padding: 40px;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
	 margin-bottom: 50px;

}

.application-summary h2 {
   font-size: 1.8rem;
	 color: #1e3c72;
    margin-bottom: 30px;
    font-weight: 600;
}

.summary-grid {
	display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap    :  25px;
	text-align: left;
}



.summary-item {
    display: flex;
    flex-direction: column;
   padding: 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.summary-label {
  font-weight: 600;
  color: #999;
    font-size: 0.9rem;
                    margin-bottom: 8px;
}

.summary-value {
   font-size: 1.1rem;
   color: #1e3c72;
    font-weight: 600;
}

.next-steps

{
   background: #ffffff;
    padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
    margin-bottom: 50px;
  text-align: left;
}

.next-steps h2 {
  font-size: 1.8rem;
 color: #1e3c72;
   margin-bottom  :  40px;
   font-weight: 600;
    text-align: center;
}

.steps-container {
   gap: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.step {
    display: flex;
	gap: 20px;
}

.step-number {
    flex-shrink: 0;
  width: 50px;
   height :      50px;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1e3c72;
    border-radius: 50%;
   display: flex;
   align-items: center;
  justify-content: center;
   font-weight: 700;
  font-size: 1.5rem;
}

.step-content {
   text-align: left;
}

.step-content h3 {
  font-size: 1.1rem;
    color: #1e3c72;
  margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
   color: #666;
   font-size: 0.95rem;
  line-height: 1.6;
   margin: 0;
}

.resources-section
{
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   padding: 40px;
   border-radius: 12px;
  margin-bottom: 50px;
    text-align: left;
}

.resources-section h2 {
   color: #1e3c72;
    text-align: center;
               font-weight: 600;
    margin-bottom: 20px;
  font-size: 1.8rem;
}

.resources-section p {
   text-align: center;
    color: #666;
   margin-bottom: 25px;
   font-size: 1.05rem;


}



.resources-list {
  list-style: none;
      padding: 0;
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.resources-list li {
   background: #ffffff;
   padding: 20px;
  border-radius: 10px;
    border-left: 4px solid #ffc107;
    color: #666;
   font-size: 0.95rem;
    line-height: 1.7;
}

.resources-list a {
    color: #1e3c72;
     font-weight:     600;
   	 transition: all 0.3s ease;
}

.resources-list a:hover {
    color :   #ffc107;
}

.thankyou-actions {
  display: flex;
  gap: 20px;
         justify-content: center;
  margin-bottom: 50px;
}

.action-button {
	display: inline-block;
	 padding: 16px 42px;
     border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
  transition: all 0.3s ease;
}

.action-button.primary {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffc107;
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
} 

.action-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 60, 114, 0.4);
}

.action-button.secondary {
 background: #ffffff;
  color: #1e3c72;
   border: 2px solid #1e3c72;
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.1);
}

.action-button.secondary:hover {
     background: #1e3c72;
   color:        #ffc107;
  transform: translateY(-3px);
}

.confidence-message {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  padding: 30px;
    border-radius   :   12px;
   color: #1e3c72;
   font-size: 0.95rem;
  line-height: 1.8;
}

.confidence-message p		{
   margin: 0;
}

.confidence-message strong {
    font-weight: 700;
}

.why-youthLead-thankyou {
         padding: 80px 40px; 
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.why-youthLead-thankyou h2     {
	  font-size: 2.8rem; 
	                    color: #1e3c72; 
	    text-align: center; 
	                    margin-bottom :       70px; 
	   font-weight: 700;
}

.benefits-grid-thankyou {
   display: grid;
   margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
         max-width    :        1200px;
 gap: 30px;
	
} 

.benefit-card-thankyou {
		 background   :  #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.08);
   transition: all 0.3s ease;
    border-top : 4px solid #ffc107;
}

.benefit-card-thankyou:hover {
  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
  transform: translateY(-5px);
}

.benefit-icon-thankyou {
    margin-bottom: 20px;}

.benefit-icon-thankyou img {
    width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.4));
}

.benefit-card-thankyou h3 {
  font-size: 1.3rem;
  color: #1e3c72;
  margin-bottom    :15px;
   font-weight: 600;
}

.benefit-card-thankyou p {
    color: #666;
  font-size: 0.95rem;
   line-height: 1.6;
   margin: 0;
}  @media (max-width: 768px) {
    .services-hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .services-tabs {
        grid-template-columns: 1fr;
    }

    .services-content {
        padding: 60px 20px;
    }

    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-image {
        position: static;
    }

    .features-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .services-cta h2 {
        font-size: 2rem;
    }

    .comparison-section {
        padding: 60px 20px;
    }

    .comparison-section h2 {
        font-size: 2rem;
    }

    .summary-grid,
    .steps-container,
    .resources-list {
        grid-template-columns: 1fr;
    }

    .benefits-grid-thankyou {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-hero h1 {
        font-size: 2.2rem;
    }

    .webinars-list {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
        gap: 15px;
    }

    .action-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1,
    .services-navigation h2,
    .service-text h2,
    .services-cta h2,
    .application-summary h2,
    .next-steps h2,
    .why-youthLead-thankyou h2 {
        font-size: 1.6rem;
    }

    .tab-btn {
        font-size: 0.85rem;
        padding: 12px 15px;
    }

    .feature-tile {
        padding: 20px;
    }

    .option-card {
        padding: 25px;
    }

    .benefits-grid-thankyou {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 0 15px;
    }

    .summary-item,
    .resources-list li {
        padding: 15px;
    }

    .step {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}.policy-hero {
   padding: 100px 40px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   text-align: center;
    color: #ffffff;
}

.policy-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.policySection {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	
}

.policyContainer {
    max-width: 900px;
    margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
    font-size: 2.2rem;
	 color: #1e3c72;
   margin: 50px 0 30px 0;
    font-weight     :        700;
   line-height: 1.3;
}

.policyContainer h2:first-of-type {
    margin-top: 0;
}

.policyContainer p {
   color: #555;
       margin-bottom: 25px;
   line-height: 1.85;
  font-size: 1.05rem;
    text-align: justify;
}

.policyContainer p:last-child {
  margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 20px;
    }

    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policySection {
        padding: 60px 20px;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
        margin: 40px 0 20px 0;
    }

    .policyContainer p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 50px 15px;
    }

    .policy-hero h1 {
        font-size: 1.6rem;
    }

    .policySection {
        padding: 50px 15px;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
}