* {
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
/* TODO: optimize for mobile */



/* Component styles */


body
{

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: #333;
   background-color: #fafafa; 
	
}

.navbar{


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding   :        1.2rem 0;
    position: sticky;
    top    :      0;
  z-index   :        1000;
  box-shadow: 0 2px 10px 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-logo img {
   height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display    :  flex;
   list-style: none;
   gap: 2rem;
}


.nav-link {

	  color: white;
          text-decoration: none;
   -webkit-border-radius: 4px;
    font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  -moz-border-radius: 4px;
  border-radius: 4px;


}

.nav-link:hover   {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);


}

.nav-toggle 
 {
          display: none;
	 flex-direction: column;
   background: none;
   border: none;
   cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
          margin: 5px 0;
	transition     :        0.3s;
  border-radius     :     2px;

}

.hero {

	   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
     align-items: center;
  padding:      4rem 2rem;
		max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
	}

/* Utility classes */

.hero-content h1 {
        font-size :   3rem;
  color: #2c3e50;
    margin-bottom:1rem;
   line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
   color: #555;
   margin-bottom:        2rem;
}

.cta-button {
  display: inline-block;
               padding  :  1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color:    white;
  text-decoration  : none;
      border-radius: 8px;
    font-weight: 600;
	transition: all 0.3s ease;
     border: none;
  cursor: pointer;
}

.cta-button:hover {
	  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
     }

.hero-image img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 400px;
}

.intro-section {
   padding: 4rem 2rem; 
    background-color: white;
}
/* NOTE: keep for legacy support */
/* Browser compatibility */

	/* NOTE: keep for legacy support */
.intro-container {
	margin: 0 auto;
   max-width: 1200px;
}

.intro-section h2 {
	 font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
    color: #2c3e50;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; 
	
}

.intro-card {
  padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   border-radius: 12px;
   transition: all 0.3s ease;
   border-left: 4px solid #667eea;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.intro-title {
      font-size: 1.3rem;
    font-weight: 700;
	color: #667eea;
    margin-bottom: 1rem;
	
}

.intro-card p {
	color: #555;
  line-height: 1.8;
}  

.services-preview {
   padding  :4rem 2rem;
   background-color: #fafafa;
}

.services-preview h2 {
  font-size: 2.5rem;
	         text-align: center;
	   margin-bottom     :3rem;
	  color: #2c3e50;
}

.services-grid {
		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
	max-width: 1200px;
  margin: 0 auto;
}

.service-card {

  background: white; 
   border-radius: 12px; 
     overflow: hidden; 
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
  transition: all 0.3s ease;


}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}
	/* Typography */

	/* Typography */

.service-card img	{
  width   :        100%;
   height: 250px;
  object-fit  : cover;
}

.service-card h3 {
   padding: 1.5rem 1.5rem 0.5rem;
      color: #2c3e50;
      font-size: 1.3rem;
}

.service-card p 
 {
   padding     :     0.5rem 1.5rem 1rem;
  color: #666;
  font-size: 0.95rem;
}

.service-badge {
   display     :    inline-block;

    padding: 0.5rem 1rem;

   margin: 0 1.5rem 1.5rem;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

			color:white;

    border-radius  : 20px;

   font-size    :  0.85rem;

   font-weight: 600;

}

.programs-section {
    padding    :        4rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.programs-section h2 {
  text-align: center; 
	 margin-bottom: 3rem; 
  color: #2c3e50; 
   font-size: 2.5rem;

}

.programs-content {
    max-width: 1200px;
  margin: 0 auto;
	
}

.program-item {
  display: grid;
  grid-template-columns:1fr 1fr;
    gap   :3rem;
   align-items: center;
  margin-bottom: 4rem;
	background: white;
    padding    :2rem;
	 border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.program-item.reverse {


 grid-template-columns: 1fr 1fr;
    direction: rtl;

}

.program-item.reverse > * {
   direction: ltr; 

}

.program-item img {

	    width: 100%;
  border-radius: 12px;
               object-fit: cover;
    height: 350px;

}

.program-details h3 {
    font-size: 1.8rem;
		color :     #2c3e50;
	   margin-bottom: 1rem;
}

/* Experimental feature */

.program-details p
{


	 color: #666;
	margin-bottom: 1.5rem;
    line-height :1.8;
}

.program-features {
    list-style: none;
}

.program-features li

{
    padding: 0.7rem 0; 
	   color: #555; 
	    padding-left: 1.5rem; 
		position: relative;
}

.program-features li:before {
  content: "✓";
       position: absolute;
  left: 0;
   color: #667eea;
  font-weight: bold;
}

.webinar-section {
         padding:     4rem 2rem;
   background-color: white;
}

.webinar-section h2 {
  font-size     : 2.5rem;
    text-align: center;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.webinar-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap  :        2rem;
               max-width   :  1200px;
    margin: 0 auto;
}

.webinar-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding     :       2rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
   transition: all 0.3s ease;
}

.webinar-card:hover
	{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.webinar-title {
	 font-size: 1.3rem;
    font-weight: 700;
   color: #2c3e50;
    margin-bottom: 1rem;
	}

.webinar-card p {
	color: #666;
	 margin-bottom: 1.5rem;
	line-height: 1.8;
}
/* Third-party styles */

.webinar-meta {


  font-size: 0.9rem;
    color: #888;
    gap: 1rem;
   display: flex;
  margin-bottom: 1.5rem;

} 

.webinar-btn


{
    width: 100%;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border: none;
   border-radius: 6px;
   font-weight: 600;
       cursor: pointer;
   transition: all 0.3s ease;}
/* Utility classes */


.webinar-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
     }

.testimonials-section {
    padding :     4rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
     }


.testimonials-section h2 {


  font-size  :    2.5rem;
	 text-align: center;
  margin-bottom: 3rem;
    color: #2c3e50;}



.testimonials-grid


{
		display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
                    max-width: 1200px;
    margin: 0 auto;


}

.testimonial-card {
   background: white;
   padding   :   2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #667eea;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.testimonial-card p {
    color: #555;
    font-style: italic;
   margin-bottom  :  1.5rem;
  line-height: 1.8;
} 

.testimonial-author {
   display: flex;
	flex-direction: column;
  gap: 0.3rem;


}

.author-name {

    font-weight     :      700;
    color:      #2c3e50;


}

.author-role {
   font-size: 0.9rem;
   color: #888;
}


.cta-section {
   padding   :      4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	text-align: center;
}

.cta-content h2 {
  font-size: 2.2rem;

	    color: white;

	    margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
	 font-size: 1.1rem;
   margin-bottom: 2rem;
}

.cta-large

{
  padding: 1.2rem 2.5rem;
   font-size:       1.05rem;
   background: white;
      color: #667eea;
               display   :     inline-block;
}

.cta-large:hover {


  background: rgba(255, 255, 255, 0.95);
}

.contact-section {
	padding: 4rem 2rem;
  background-color: white;
               max-width: 1200px;
   margin: 0 auto;
}
	/* Responsive design */


/* Framework override */

.contact-section h2 {
   font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.contact-container {

	display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;


}



.contact-info h3 {
   font-size: 1.5rem;
    color: #2c3e50;
  margin-bottom: 2rem;
}



.info-block {
  margin-bottom: 2rem;
}
/* Experimental feature */


.info-label {
   font-weight: 700;
   color: #667eea;
               margin-bottom: 0.5rem;
                    display: block;
}

.info-block p	{
  color: #666;
    line-height: 1.8;


} 

.contact-form {
	 display    :  flex;
   flex-direction: column;
	 gap: 1.5rem;
}

.form-group {
   	 display: flex;
	flex-direction: column;
	}

.form-group label	{
   font-weight: 600;
 color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;

    border: 2px solid #e0e0e0;

	border-radius: 6px;

  font-family: inherit;

  font-size     :     0.95rem;

    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
       outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
     }

.submit-button {
	padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border: none;
	 border-radius :6px;
   font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
  font-size     :  1rem;


}

.submit-button:hover
{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.footer {
    background: #2c3e50;
   color: white;
   padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
	margin-bottom: 2rem; 

}

.footer-section h4 {
       font-size: 1.1rem;
       margin-bottom: 1rem;
  color:        #667eea;
	
     }

.footer-logo-img {
	 height: 86px; 
	  width: auto; 
	  filter: brightness(0) invert(1); 
	 margin-bottom: 1rem;
}
/* FIXME: IE11 compatibility */



/* Component styles */

.footer-description		{
  color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
   font-size :        0.95rem;
}

.footer-links
	{
				 list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem; 
	
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover
	{
     color: #667eea;
  padding-left: 0.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7); 
	  margin-bottom: 0.8rem; 
	  line-height: 1.8;
}

.footer-phone {
    color     :      #667eea;
     font-weight: 600;
}

.footer-bottom {
    text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5); 

}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image img {
        height: 300px;
    }

    .intro-section,
    .services-preview,
    .programs-section,
    .webinar-section,
    .testimonials-section,
    .cta-section,
    .contact-section {
        padding: 2rem 1rem;
    }

    .intro-section h2,
    .services-preview h2,
    .programs-section h2,
    .webinar-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .program-item,
    .program-item.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
    }

    .program-item.reverse > * {
        direction: ltr;
    }

    .program-item img {
        height: 250px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .intro-grid,
    .services-grid,
    .webinar-container,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .intro-section h2,
    .services-preview h2,
    .programs-section h2,
    .webinar-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .program-details h3 {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .webinar-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}.services-hero  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 2rem;
    text-align: center;
  color: white;
   min-height     :       300px;
  display  :flex;
  align-items: center;
	justify-content     : center;
}


.services-hero-content h1 {
                    font-size: 3rem;
   margin-bottom: 1rem;
    line-height: 1.2;

}

.services-hero-content p


{
     font-size: 1.2rem;
    opacity: 0.95;
  max-width:   600px;
  margin: 0 auto;}


.services-main {
   padding: 4rem 2rem;
  background-color: #fafafa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container > h2

{
   font-size     :2.5rem;
   color: #2c3e50;
    text-align: center;
   margin-bottom: 3rem;
}

.service-detailed {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  margin-bottom: 4rem;
	 background   :       white;
   padding: 2.5rem;
	border-radius  :12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
	
}

.service-detailed:hover {
	  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);}

.service-detailed.reverse {
     grid-template-columns  :    1fr 1fr;
   direction: rtl;
}

.service-detailed.reverse > *     {
    direction: ltr;
}

.service-detail-image img {
  width    :100%;
   border-radius: 12px;
  object-fit: cover;
   height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-content h3 {
     font-size: 2rem;
  color   :     #2c3e50;
   margin-bottom: 1rem;
}

.service-detail-content p {
   color: #666;
   line-height:      1.8;
		 margin-bottom: 1.5rem;
	 font-size: 1rem;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
          gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 8px;
}

.highlight-item {
    text-align: center;
     }

.highlight-label {
	  display  :    block;
    font-size: 0.85rem;
	 color: #888;
   font-weight: 600;
    margin-bottom: 0.5rem;
   text-transform: uppercase;
	letter-spacing:      0.5px;
	}

.highlight-value {
  display     :      block;
		font-size: 1.1rem;
	 font-weight  :  700;
	color: #667eea;
}

.service-detail-content h4 {

	  font-size: 1.1rem;

	 color: #2c3e50;

  margin-bottom:     1rem;

   margin-top: 1.5rem;

   font-weight: 700;

}

.service-list {


  list-style: none;
   margin-bottom: 2rem;
}

.service-list li {
         padding: 0.7rem 0;
    color: #555;
   padding-left: 1.5rem;
	position:  relative;
    line-height    :  1.6;

}

.service-list li:before {
  content: "✓";
  position: absolute;
        left: 0;
  color: #667eea;
   font-weight: bold;
   font-size: 1.2rem;
}

.service-cta {

	   display: inline-block;
   padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
     text-decoration: none;
  border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
    border: none;
    cursor: pointer;


}  

.service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.pricing-section {

	  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.pricing-section h2 {
    font-size: 2.5rem;
    text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.pricing-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
       max-width: 1200px;
   margin: 0 auto;
}

.pricing-card {
  background: white;
    padding     :      2rem;
                    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  position: relative;
   border-top: 3px solid #e0e0e0;
}

.pricing-card:hover {
  transform: translateY(-8px); 
	  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    border-top  :       3px solid #667eea;
  transform: scale(1.05); 

}

.pricing-card.featured:hover{
  transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
  top: -12px;
         left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding    :       0.5rem 1.5rem;
    border-radius: 20px;
   font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
  color: #2c3e50;
   font-size: 1.3rem;
    margin-bottom     :      1.5rem;
	 margin-top: 0.5rem;
}

.price {
   margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
   border-bottom: 2px solid #f0f0f0;
}

.amount {
   display: block;
   font-size  :       2rem;
  font-weight: 700;
  color: #667eea;
}

.period   {

	display  :block;
   font-size: 0.9rem;
  color: #888;
    margin-top   :     0.3rem;

}

.pricing-features {

	   list-style     :      none;
  margin-bottom: 2rem;

}

.pricing-features li {
  border-bottom: 1px solid #f0f0f0;
   font-size     :0.95rem;
   padding: 0.7rem 0;
    color: #666;
}

.pricing-features li:last-child {
		border-bottom: none;


}

.faq-section {
   padding: 4rem 2rem;
   background-color :      white; 

}

.faq-container {
   max-width: 1000px;
	    margin: 0 auto;
}

.faq-container h2 {
       font-size    :        2.5rem;
	text-align: center;
   color: #2c3e50;
  margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item{
   -moz-border-radius     :       8px;
   border: 1px solid #e0e0e0;
                    border-radius     :     8px;
  -webkit-border-radius: 8px;
   overflow: hidden;
   transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-trigger {


	width: 100%;
	 padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border: none;
                    cursor  : pointer;
        display: flex;
 justify-content: space-between;
   align-items     :        center;
   transition: all 0.3s ease;
   font-weight: 600;}

.faq-trigger:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dce2e8 100%);
}

.faq-question {
  text-align: left;
         color: #2c3e50;
	font-size :    1rem;
}

.faq-icon {
	    font-size   :1.5rem;
  color: #667eea;
    font-weight: bold;
    transition:     all 0.3s ease;
	}

.faq-item.active .faq-trigger {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.faq-item.active .faq-trigger .faq-question {
   color: white;
}

.faq-item.active .faq-icon {
  color: white;
  transform: rotate(45deg);
}

.faq-content {
  padding: 1.5rem;
  background: white;
    display: none;
	 border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-content {
               display: block;
    animation: slideDown 0.3s ease;
}

.faq-content p 
 {
   color: #666;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.faq-content p:last-child {

	margin-bottom : 0;
}@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.services-cta {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
  color: white;
}

.services-cta h2 {
    font-size: 2.2rem;
         margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity  :      0.95;
}

.thankyou-section {
     padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 200px);
   display: flex;
  align-items: center;
   justify-content  :   center;
}

.thankyou-container {
   max-width    :     700px;
        background: white;
   padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   text-align  :     center;
}

.thankyou-icon {
  margin-bottom: 2rem;
} 

.thankyou-icon svg {
  animation: checkmarkAnimation 0.6s ease-out;
}@keyframes checkmarkAnimation {
    from {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}.thankyou-container h1 {
  font-size:        2.5rem;
       color: #2ecc71;
   margin-bottom: 0.5rem; 
	
}

.thankyou-subtitle {


   font-size    :1.2rem;

  color: #666;

   margin-bottom: 2rem;}

.thankyou-message {
   padding: 2rem;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(46, 204, 113, 0.02) 100%);
    border-left: 4px solid #2ecc71;
    border-radius :    8px;
    margin-bottom: 2rem;
}


.thankyou-message p {
   color: #555; 
	  line-height: 1.8; 
	  margin-bottom: 0.8rem;
}

.thankyou-message p:last-child {

	  margin-bottom: 0;


}

.thankyou-info  {
  text-align: left;
    margin-bottom: 2rem;
}

.thankyou-info h2 {
   font-size: 1.5rem;
	color: #2c3e50;
    margin-bottom: 1.5rem;
}

.info-steps {
   display: grid;
    gap  :     1rem;
}

.step {
    display     :  flex;
   gap: 1rem;
    padding: 1rem;
  background: #f9f9f9;
    border-radius: 8px;
   border-left: 3px solid #667eea;
}

.step-number {
      min-width: 40px;
  width: 40px;
	height     :     40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 border-radius: 50%;
        display: flex;
   align-items: center;
  justify-content: center;
    font-weight: 700;
  font-size: 1.1rem;


} 

.step-content h3 {
   font-size: 1rem;
  color: #2c3e50;
    margin-bottom: 0.3rem;

	}

.step-content p {

	  font-size     :       0.9rem;
   color: #888;
   margin     :      0;
     }

.thankyou-actions {
    display: flex;
  gap: 1rem;
	margin-bottom: 2rem;
	flex-direction: column;
}

.action-button {

	    cursor: pointer;
	border: 2px solid transparent;
   border-radius:        6px;
       transition: all 0.3s ease;
	 text-decoration: none;
    padding: 1rem 1.5rem;
  display   :   inline-block;
   font-weight: 600;}

.action-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
} 

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.action-button.secondary {
	background: transparent;
  color: #667eea;
   border-color  :        #667eea;
}

.action-button.secondary:hover {
  background: rgba(102, 126, 234, 0.05);
}

.thankyou-contact {
   padding: 1.5rem; 
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%); 
    border-radius: 8px;
}

.thankyou-contact h3 {
   font-size: 1.1rem;
    color: #2c3e50;
  margin-bottom: 0.8rem;
}

.thankyou-contact p {
	  color: #666;
    margin-bottom: 0.5rem;
  font-size: 0.95rem;


}

.contact-phone {
    font-size:   1.3rem;
	   font-weight: 700;
	               color: #667eea;
}

.contact-hours {
   color: #888;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detailed,
    .service-detailed.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .service-detailed.reverse > * {
        direction: ltr;
    }

    .service-detail-image img {
        height: 300px;
    }

    .service-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .info-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h3 {
        font-size: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.1rem;
    }

    .amount {
        font-size: 1.5rem;
    }

    .faq-trigger {
        padding: 1rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .services-cta h2 {
        font-size: 1.5rem;
    }

    .thankyou-icon svg {
        width: 80px;
        height: 80px;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        align-self: flex-start;
    }
}.policySection

{
	   padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
  min-height: calc(100vh - 200px); 

	}

.policyContainer {
    max-width: 900px;
               margin: 0 auto;
	text-align  :  left;
   background: white;
   padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
  font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 2rem;
    font-weight: 700;
   padding-bottom   :        1.5rem;
   border-bottom: 3px solid #667eea;


}

.policyContainer h2 {


    font-size: 1.8rem;

    color: #2c3e50;

   margin-bottom: 1rem;

  margin-top: 2.5rem;

		 font-weight: 700;}

.policyContainer h3 {
   font-size: 1.3rem;
  color: #667eea;
   margin-bottom: 0.8rem;
   margin-top: 1.5rem;
   font-weight: 600;
}

.policyContainer p
	{
  line-height: 1.8;
   margin-bottom: 1.2rem;
  color: #555;
  font-size  :      1rem;
}

.policyContainer p:last-child {
    margin-bottom: 0;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.3rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        margin-top: 1.8rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 1.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}