* {
    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, #667eea 0%, #764ba2 100%);
  padding: 1rem 0;
  position: sticky;
    top: 0;
      z-index: 1000;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);


}

.nav-container {


  max-width: 1200px;
   margin: 0 auto;
       padding  :     0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;




}

.nav-brand {
   display: flex;
    align-items: center;
}

.nav-logo {
   height: 94px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display     :       flex;
   list-style: none;
    gap: 2rem;
  align-items: center;
}

.nav-links a


{
   color    :        white;
  text-decoration: none;
  font-weight: 500;
    transition: all 0.3s ease;
   position :  relative;

}

.nav-links a::after {
  content: '';
   position: absolute;
    bottom: -5px;
   left: 0;
  width: 0;
    height: 2px;
    background: white;
  transition :     width 0.3s ease;
}

.nav-links a:hover::after {
   width: 100%; 
	
}

.nav-cta {
  background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
  border-radius: 20px;
   transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.burger-menu {
    display    :        none;
        flex-direction: column;
    gap: 6px;
    background: none;
    border :      none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu span {
    width: 25px;
   height: 3px;
	background    : white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) 
 {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2)
{
	 opacity: 0; 

}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);}

.hero {
    max-width:     1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
    min-height  :        600px;
}

.hero-content h1 {
	       font-size   :   3rem;
   margin-bottom   :       1.5rem;
  line-height: 1.2;
    color: #2c3e50;
    animation: fadeInDown 0.8s ease; 

     }

.hero-content p {
    font-size: 1.2rem;
    color: #555;
         margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta
{
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	border: none;
    border-radius: 30px;
   font-size: 1.1rem;
  font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
               animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.hero-image	{

   animation: slideInRight 0.8s ease;}

.hero-image img {
    width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section-wrapper {
   max-width   :1200px;
          margin: 0 auto;
  padding: 0 2rem;
}

.section-about

{
  padding: 5rem 2rem;
    background: white;
               margin: 3rem 0;
    border-radius: 10px;
}

.section-about h2

{

   font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
    text-align: center;}

.section-about > .section-wrapper > p {
      font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
   text-align: center;
}

.about-features {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
   margin-top: 2rem;
}


.feature-item {


   padding: 2rem;
   background: #f0f4ff;
    border-radius    :        12px;
    transition: all 0.3s ease;
   border-left: 4px solid #667eea;
	}

.feature-item:hover	{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15); 

}

.feature-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
  font-size :1.3rem;
}

.feature-item p {
	    color: #666;
    line-height: 1.6;
     }

.section-services-preview {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.section-services-preview h2 {


   font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
	 text-align: center;


}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: white;
  border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.service-card img {
   width: 100%;
  height  :   250px;
    object-fit: cover;
   transition: transform 0.3s ease;
}

.service-card:hover img {
	  transform: scale(1.05);
	}

.service-card h3 {
  padding    : 1.5rem 1.5rem 0.5rem;
  color: #2c3e50;
  font-size: 1.3rem;
}

.service-card p {
   padding: 0 1.5rem 1.5rem;
    color: #666;
   line-height :        1.6;
}

.section-benefits {
   padding: 5rem 2rem;
  background: white;
	
}

.section-benefits h2 {
    font-size: 2.5rem;
  margin-bottom   :     3rem;
  color  :      #2c3e50;
  text-align:       center;
}

.benefits-container {
	 display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefit-column h3 {
   color: #667eea;
  font-size   :   1.5rem;
  margin-bottom    :     1.5rem;


}

.benefits-list {
    list-style: none;
}

.benefits-list li {
   padding: 0.8rem 0;
   padding-left:     2rem;
	position: relative;
   color: #555;
               line-height: 1.8;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
   font-size: 1.2rem;
}

.section-process {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff9f0 100%);
}

.section-process h2 {
 font-size: 2.5rem;
  margin-bottom: 3rem;
 color: #2c3e50;
               text-align: center;
}

.process-timeline {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
  position: relative;


}

.process-step {
  background: white;
    padding:    2rem;
    border-radius: 10px;
         text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
  border-radius: 50%;
       display: flex;
   align-items: center;
   justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
      color: #2c3e50;
  margin-bottom: 1rem;
   font-size: 1.2rem;
}



.process-step p {
	 color: #666;
   line-height: 1.6;
}

.section-training-methods {
  padding: 5rem 2rem;
 background: white;
}

.section-training-methods h2 {
   font-size     :        2.5rem;
   margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.methods-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 2.5rem; 
	
}

.method-item {
  background   :#f8f9fa;
  padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.method-item:hover {
    border-color: #667eea;
   background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.method-item h3 {
  color: #2c3e50;
        margin-bottom: 1rem;
  font-size: 1.3rem;
}

.method-item p {
  color: #666;
	margin-bottom: 1.5rem;
   line-height: 1.6;
}

.method-item img {
   width: 100%;
  height: auto;
    border-radius: 8px;
    margin-top: 1rem;
}

.section-testimonials {


  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);

}

.section-testimonials h2 {
  font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
          text-align: center;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
   background     :white;
   padding   :   2rem;
   border-radius  :     12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	border-left: 4px solid #667eea;
   transition: all 0.3s ease;
}

.testimonial-card:hover 
 {
     transform: translateY(-5px);

	  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);


}

.testimonial-card p {
   font-style: italic;
 color: #555;
   margin-bottom: 1.5rem;
   line-height: 1.8;
}

.testimonial-card h4 {
                    color: #667eea;
    font-size     :    1rem;
    font-weight: 600;
}

.section-webinars {
    padding: 5rem 2rem;
       background: white;
}

.section-webinars h2 {
   font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
    text-align: center;
}

.section-webinars > .section-wrapper > p {
  text-align: center;
   color: #555;
  margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.webinars-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2rem;
} 

.webinar-item {


  background: linear-gradient(135deg, #f0f4ff 0%, #fff9f0 100%);
          padding: 2rem;
    border-radius: 12px;
  border: 2px solid #667eea20;
  transition: all 0.3s ease;
}

.webinar-item:hover  {
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.webinar-item h3 {
	 margin-bottom: 1rem;
  color: #2c3e50;
    font-size: 1.2rem;
}

.webinar-item p {
     color: #666;
   margin-bottom: 1rem;
    line-height  :  1.6;
}

.frequency {
    display: inline-block;
     background: #667eea;
       color    :        white;
      padding: 0.4rem 1rem;
       border-radius: 20px;
      font-size: 0.9rem;
   	font-weight: 500;


}

.section-cta {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   text-align: center;
}

.section-cta h2 {


    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-cta p {
    font-size: 1.2rem;
	margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {


    padding: 1rem 3rem;
  background  :  white;
  color: #667eea;
    border: none;
  border-radius: 30px;
  font-size  :       1.1rem;
  font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
     }

.cta-button:hover {
	  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

}

.contact-section {
  padding: 5rem 2rem;
  background   :     white;

}

.contact-section h2 {
  font-size: 2.5rem;
    margin-bottom: 3rem;
         color: #2c3e50;
  text-align: center;
}

.contact-container{
    display  :    grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
  background:      #f8f9fa;
  padding: 2.5rem;
    border-radius: 12px;
}

.contact-form {
   display: flex;
    flex-direction: column;
   gap: 1.5rem;
}

.form-group {
	 display: flex;
    flex-direction: column;
}

.form-group label {
   color: #2c3e50; 
  font-weight: 500; 
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding  :     0.9rem;
   border: 2px solid #ddd;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-family: inherit;
    border-radius: 8px;
}

.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 {
  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;
    margin-top: 1rem;
	
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-info {
   display: flex;
  flex-direction: column;
   gap: 2rem;
     }

.contact-info h3 
 {
    color: #2c3e50;
               font-size: 1.5rem;
   margin-bottom: 0.5rem;
}

.info-item h4 {
   color: #667eea;
  margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
   color: #555; 
	    line-height: 1.8;
}

.footer {
   background: #2c3e50;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: auto 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
    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(200px, 1fr));
   gap: 2rem;
}

.footer-section h4	{

		 color: #667eea;
    margin-bottom: 1rem;
 font-size: 1.1rem;

}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {

	   margin-bottom: 0.7rem;
	}

.footer-section a {
               color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
   color: #667eea; 

}

.footer-section p {
                    color: #bbb;
    line-height: 1.8;
}

.footer-bottom {
   max-width: 1200px;
   margin: 0 auto;
    padding-top: 2rem;
  border-top: 1px solid #444;
    text-align: center;
  color: #999;
}@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links a {
        padding: 1rem;
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-about,
    .section-services-preview,
    .section-benefits,
    .section-process,
    .section-training-methods,
    .section-testimonials,
    .section-webinars,
    .section-cta,
    .contact-section {
        padding: 3rem 0;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 70px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-about h2,
    .section-services-preview h2,
    .section-benefits h2,
    .section-process h2,
    .section-training-methods h2,
    .section-testimonials h2,
    .section-webinars h2,
    .section-cta h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
}.hero-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 6rem 2rem;
    position     :     relative;
    overflow: hidden;
    min-height: 400px;
   display: flex;
    align-items   : center;
                    justify-content: center;
   text-align: center;
}

.hero-overlay {
   position: absolute;
  top: 0;
    left: 0;
	 right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1), transparent 50%);
}

.hero-content-services		{
  position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    animation: fadeInDown 0.8s ease;
}


.hero-content-services h1 {
  font-size: 2.8rem;

	  margin-bottom: 1rem;

	    line-height: 1.2;
}

.hero-content-services p {
  font-size: 1.2rem;
    opacity: 0.95;
}

.services-intro
{
    padding: 5rem 2rem;
    background: white;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
   text-align: center;
}

.intro-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;}

.intro-card {
                    padding: 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff9f0 100%);
    border-radius: 12px;
   text-align: center;
   transition    :     all 0.3s ease;
        border: 2px solid transparent;
}

.intro-card:hover {


    border-color   :   #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);}

.intro-icon {
  width :    70px;
   height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
   display    :   flex;
   align-items: center;
    justify-content: center;
    font-size: 2rem;
   font-weight: bold;
    margin: 0 auto 1rem;
}

.intro-card h3


{
    color: #2c3e50;
	margin-bottom: 1rem;
       font-size: 1.3rem; 
	
}

.intro-card p {
   color :   #666;
                    line-height: 1.6;
}

.services-detailed {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-detailed h2		{
  font-size: 2.5rem;
    margin-bottom: 3rem;
  color    :     #2c3e50;
    text-align: center;
}

.service-detailed-item {
   gap:    3rem;
   grid-template-columns: 1fr 1fr;
    display: grid;
    align-items: center;
   animation   :        fadeInUp 0.8s ease;
    margin-bottom: 4rem;
}

.service-detailed-item.reverse
{
    grid-template-columns: 1fr 1fr;
}

.service-detailed-item.reverse .service-image {
    order :      2;
}

.service-detailed-item.reverse .service-text	{
  order: 1;
}

.service-image img {

		 width: 100%;
	height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;

}

.service-image:hover img {
  transform: scale(1.03);
}

.service-text h3 {
  font-size: 2rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
}

.service-text > p {
   color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
    margin-bottom:1.5rem;
}

.service-text h4 {
      margin: 2rem 0 1rem;
  font-size: 1.1rem;
    color: #667eea;}

.service-features {
   margin-bottom: 2rem;
	list-style: none;
}

.service-features li {
    padding: 0.7rem 0;
  padding-left: 1.8rem;
    position    :   relative;
  color: #666;
    line-height: 1.6;
	
}

.service-features li::before {
  content: '✓';
  position: absolute;
   left: 0;
    color: #667eea;
  font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing	{
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 1.5rem;
  border-radius: 10px;
   border-left: 4px solid #667eea;
}  

.price {
    display: block;
   font-size: 1.8rem;
    font-weight: 700;
  color: #667eea;
    margin-bottom:0.5rem;
}

.duration{
    display: block;
 color: #999;
        font-size: 0.95rem;
}

.service-packages {
  padding: 5rem 2rem;
   background: white;
}

.service-packages h2 {
    font-size: 2.5rem;
                    margin-bottom: 1rem;
  color: #2c3e50;
               text-align: center;
}

.packages-intro {
    text-align:     center;
	   color :#666;
	  font-size: 1.1rem;
		margin-bottom: 3rem;
}

.packages-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
      background: #f8f9fa; 
   padding: 2.5rem; 
   border-radius     :   12px; 
  border: 2px solid #ddd; 
    transition: all 0.3s ease; 
    position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.package-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color: white;
	  transform: scale(1.02);
}

.package-card.featured .package-badge {


  background: white;
  color:     #667eea;
     }

.package-badge {
  position: absolute;
  top: 20px;
    right: 20px;
   background: #667eea;
  color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
   font-weight: 600;
                    text-transform: uppercase;
}


.package-card h3 {
         font-size: 1.5rem;
    margin-bottom: 1rem;
   margin-top: 1rem;
    color   :  #2c3e50;
}

.package-card.featured h3 {
   color: white;
}

.package-card > p   {
  color: #666;
       margin-bottom: 1.5rem;
       line-height: 1.6;
}

.package-card.featured > p {
  color: rgba(255,255,255,0.95);
}

.package-features {
	list-style: none;
	margin-bottom: 2rem;
}

.package-features li {
  padding: 0.8rem 0;
    padding-left: 1.8rem;
	position: relative;
   color:       #666;
  line-height: 1.6;
}

.package-card.featured .package-features li {
  color: rgba(255,255,255,0.95);
}

.package-features li::before {
  content: '→';
   position     :   absolute;
  left: 0;
	color: #667eea;
  font-weight   :    bold;
}

.package-card.featured .package-features li::before {
  color: white;
}

.package-price

{
	 font-size:      1.8rem;
   font-weight: 700;
   color: #667eea;
    text-align: center;
   padding-top: 1.5rem;
   border-top    :      2px solid #ddd;
}

.package-card.featured .package-price    {
  color: white;
  border-color: rgba(255,255,255,0.2);
}

.service-faq {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff9f0 100%);
}

.service-faq h2 {
      font-size   :    2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;
      text-align: center;
}

.faq-container {
          max-width: 800px;
    margin: 0 auto;
}

.faq-item
{
		 background: white;
   margin-bottom: 1.5rem;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;}

.faq-question {
   padding: 1.5rem;
	 cursor: pointer;
    display: flex;
    justify-content: space-between;
   align-items: center;
  transition: all 0.3s ease;
	background: #f8f9fa;
}

.faq-question:hover {
    background: #f0f4ff;
}

.faq-question h4 {
   color: #2c3e50;
    font-size: 1.1rem;
  margin: 0;
                    flex: 1; 
	
}

.faq-toggle {
  color: #667eea;
   font-size: 1.8rem;
	font-weight: bold;
   margin-left: 1rem;
   transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}


.faq-answer {
   	padding: 1.5rem;
    color: #666;
   line-height: 1.8;
   border-top: 1px solid #eee;}

.faq-answer p {
   margin: 0;
}

.service-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.service-cta h2 {
  font-size: 2.5rem;
   margin-bottom: 1rem;
}

.service-cta p {
   font-size: 1.2rem;
                    margin-bottom: 2rem;
   opacity    :      0.95;
	}  

.service-cta-button {
  display: inline-block;
   padding: 1rem 3rem;
    background   :    white;
   color: #667eea;
  border: none;
    border-radius: 30px;
  font-size: 1.1rem;
   font-weight: 600;
    cursor    :  pointer;
    text-decoration: none;
         transition: all 0.3s ease;
}

.service-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff9f0 100%);
   min-height: 70vh;
  display: flex;
        align-items: center;
  justify-content: center;
}

.thankyou-container {
  max-width: 700px;
      width: 100%;
      background: white;
      padding: 3rem;
       border-radius: 15px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
          animation: fadeInUp 0.8s ease;
}

.success-icon {
  width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
               display     :        flex;
  align-items: center;
   justify-content    :      center;
  margin: 0 auto 1.5rem;
    color: white;
}

.success-icon svg		{
   width: 50px;
    height: 50px;
}

.thankyou-container h1 {
   font-size: 2.2rem;
    color: #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
  text-align: center;
  color: #667eea;
    font-size  :   1.1rem;
   margin-bottom: 2rem;
   font-weight: 500;
}


.thankyou-content {
    margin: 2rem 0;
}

.thankyou-content > p {
	 color: #666;
  line-height: 1.8;
    margin-bottom  :  1.5rem;
}

.confirmation-box {
  background: #f8f9fa;
	padding: 1.5rem;
   border-radius: 10px;
   margin :     2rem 0;
    border-left: 4px solid #667eea;
}

.confirmation-box h3 {
	color: #2c3e50;
    margin-bottom: 1rem;
   font-size: 1.2rem;
}  

.confirmation-item
{
      display: flex;
  justify-content: space-between;
  padding:        0.8rem 0;
    border-bottom: 1px solid #e0e0e0;

}

.confirmation-item:last-child {
   border-bottom: none;
}

.confirmation-label {
    font-weight: 600;
  color :#2c3e50;
}

.confirmation-value {
   color: #667eea;
}

.next-steps {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
   padding: 1.5rem;
  border-radius: 10px;
    margin: 2rem 0;
}



.next-steps h3 {
    margin-bottom     :  1rem;
    color: #2c3e50;
   font-size: 1.2rem;
}

.steps-list {
	    margin: 0;
     padding-left: 1.5rem;
	}

.steps-list li {
  margin-bottom: 0.8rem;

		color   :     #666;

  line-height: 1.6;
}

.steps-list li strong

{
    color: #2c3e50;
}

.info-boxes {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
  margin: 2rem 0;
}

.info-box {
    background: #f8f9fa;
   padding: 1.5rem;
   border-radius: 10px;
    border: 2px solid #ddd;
}

.info-box h4 {
   color: #2c3e50;
  margin-bottom :       0.8rem;
  font-size: 1rem;
}

.info-box p {
   color: #666;
   font-size: 0.95rem;
 line-height: 1.6;
   margin: 0;
}

.info-box a {
	    color: #667eea; 
	        text-decoration: none; 
	   font-weight: 500; 
}

.info-box a:hover {

    text-decoration: underline;
	}

.contact-reminder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
    padding: 2rem;
   border-radius   :        10px;
   text-align: center;
   margin: 2rem 0;
}

.contact-reminder h3 {
	margin-bottom: 1rem;
   color: white;
}

.contact-reminder p {
  color: rgba(255,255,255,0.95);
	margin: 0.5rem 0;
   line-height     :   1.6;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
  margin-top    :       2rem;
}

.action-button {
  -webkit-flex: 1;
   -ms-flex: 1;
    flex : 1;
    padding: 0.9rem;
   border-radius     :     8px;
    text-align: center;
  text-decoration:  none;
  -o-transition :all 0.3s ease;
    font-weight: 600;
  -moz-transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
	display: inline-block;
}

.action-button.primary  
  {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color    :   white;

}

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.action-button.secondary    {
    background: #f0f4ff;
    color: #667eea;
  border  :  2px solid #667eea;
}

.action-button.secondary:hover {
	background: #667eea;
	    color: white;
}

.webinar-promo {
   padding: 4rem 2rem; 
	    background: white;
}

.webinar-promo .section-wrapper {
   text-align: center;
}

.webinar-promo h2

{
   font-size: 2rem;
                    color: #2c3e50;
   margin-bottom :1rem;
}

.webinar-promo > .section-wrapper > p {
   font-size: 1.1rem;
    color: #666;
               margin-bottom  :      2rem;
}

.webinar-details {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap     :      2rem;
   max-width: 600px;
	margin: 0 auto;
}


.webinar-detail {
  background: linear-gradient(135deg, #f0f4ff 0%, #fff9f0 100%);
   padding: 1.5rem;
    border-radius: 10px;
}

.webinar-detail h4		{
   color :     #667eea;
   margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform   :  uppercase;
}

.webinar-detail p {
    color: #2c3e50;
  font-weight: 600;
}@media (max-width: 768px) {
    .hero-content-services h1 {
        font-size: 1.8rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
    }

    .service-detailed-item.reverse .service-image {
        order: auto;
    }

    .service-detailed-item.reverse .service-text {
        order: auto;
    }

    .services-detailed h2,
    .service-packages h2,
    .service-faq h2,
    .service-cta h2 {
        font-size: 1.8rem;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content-services h1 {
        font-size: 1.5rem;
    }

    .service-text h3 {
        font-size: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .webinar-details {
        grid-template-columns: 1fr;
    }
}.policy-section     {
       padding: 80px 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff9f0 100%);
   min-height: 80vh;
}

.policy-container   {
  max-width: 800px;
   margin: 0 auto;
    text-align: left;
   background: white;
  padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
	border-bottom: 3px solid #667eea;
   padding-bottom: 1rem;
}

.policy-container h2 {
  font-size: 1.8rem;
  color: #2c3e50;
    margin-bottom: 1rem;
   margin-top: 2rem;
       font-weight: 600;
}


.policy-container p {
  line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  color  : #555;
}

.policy-container strong {
  color: #667eea;
   font-weight: 600;
	
}@media (max-width: 768px) {
    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
    }

    .policy-container p {
        font-size: 0.95rem;
    }

    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-container h1 {
        font-size: 1.6rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
    }

    .policy-container {
        padding: 1.5rem;
    }

    .policy-section {
        padding: 40px 0.5rem;
    }
}