* {
                    margin    :       0;
   padding: 0;
   box-sizing: border-box;
}

html		{
         scroll-behavior: smooth;
    font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: #2c3e50;
   background-color :      #ffffff;
}

img {
    max-width: 100%;
  height: auto;
  display: block;
     }

a {
    text-decoration: none;
	color:       inherit;
}

button {
   border: none;
  background: none;
    cursor   :       pointer;
        font-family: inherit;
}

input, textarea, select  {
  font-family: inherit;
	 font-size: 1rem;
}  

.navbar


{
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.nav-container {
    margin   :      0 auto;
	 align-items: center;
  max-width: 1200px;
   padding :  0 2rem;
   justify-content     :        space-between;
  display: flex;
}

.nav-logo img {
    height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display   :     flex;
  list-style: none;
    gap: 2.5rem;
 align-items : center;
}

.nav-link{
  color:     #ffffff;
   font-weight: 500;
   transition: color 0.3s ease;
  font-size: 1.05rem;
}

.nav-link:hover {
 color: #3498db;
}

.hamburger {
   display: none; 
    flex-direction: column; 
	gap: 6px; 
	background: none;
}

.burger-line {
    width: 25px;
   height: 3px;
  background: #ffffff;
  border-radius: 2px;
	transition: all 0.3s ease;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1rem;
        display: none;
        list-style: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
}.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap  :  3rem;
    align-items: center;
	max-width: 1200px;
  margin: 0 auto;
   padding:6rem 2rem;
}

.hero-content h1 {
    font-size:      3rem;
   font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
               line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
   margin-bottom   :2rem;
   line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
   font-size: 1.05rem;
	
}


.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.hero-image img {
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.features-grid
	{
  background: #f8f9fa;
	  padding: 5rem 2rem;
}

.features-header

{
  text-align    :        center;
	 max-width: 1200px;
    margin: 0 auto 4rem;
}

.features-header h2 {
      font-size: 2.5rem;
     color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.features-header p {
   font-size: 1.1rem; 
  color: #666;
}

.features-container {
  display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap : 2.5rem;
          max-width: 1200px;
    margin: 0 auto;

}

.feature-card {
   background: #ffffff;
   padding: 2.5rem;
   border-radius     :  12px;
    text-align: center;
   transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover	{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.feature-icon {
	 width: 70px;
   margin: 0 auto 1.5rem;
  height   :  70px;
}

.feature-icon img {
   width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
     transition    :     all 0.3s ease;
}

.feature-card:hover .feature-icon img {
  filter: drop-shadow(0 4px 15px rgba(102, 126, 234, 0.6));
  transform: scale(1.1);
}

.feature-card h3


{
      font-size: 1.3rem;
   color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.feature-card p {
   font-size: 0.95rem;
   color: #666;
   line-height: 1.6;
}@media (max-width: 768px) {
    .features-header h2 {
        font-size: 1.8rem;
    }

    .features-container {
        grid-template-columns: 1fr;
    }
}.services-showcase {
  max-width: 1200px;
    margin :   5rem auto;
    padding: 0 2rem;
}

.showcase-item {
		display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
   padding: 3rem;
  background: #f0f3ff;
    border-radius   :    12px;
}

.showcase-image img {
	border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-content h2 {
   font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.showcase-content p {
	margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
    font-size: 1rem;
}@media (max-width: 768px) {
    .showcase-item {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .showcase-content h2 {
        font-size: 1.5rem;
    }
}.training-section{
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
   padding: 5rem 2rem;
}

/* FIXME: IE11 compatibility */
/* Temporary fix */

.training-header {
    text-align: center;
    max-width: 1200px;
      margin     :       0 auto 4rem;
}

.training-header h2 {
   font-size: 2.5rem;
  color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.training-header p {
	font-size: 1.1rem;
  color: #666;
}

.training-grid {
       display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
	max-width: 1200px;
   margin: 0 auto;
	


}

.training-card {
       background: #ffffff;
   border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
} 

.training-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
}

.training-card img {
    width   :  100%;
   height: 250px;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.training-card:hover img {
  transform: scale(1.08);
}

.training-card h3 {
        font-size: 1.4rem;
    color: #1a1a2e;
               padding: 1.5rem 1.5rem 0;
  margin-bottom: 0.8rem;
}

/* Responsive design */

.training-card p {
    color     :  #666;
	    padding: 0 1.5rem 1.5rem;
	  font-size: 0.95rem;
	     line-height: 1.6;
}
@media (max-width: 768px) {
    .training-section {
        padding: 3rem 1.5rem;
    }

    .training-header h2 {
        font-size: 1.8rem;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }
}.testimonials		{
  background: #1a1a2e;

	    color: #ffffff;

	   padding: 5rem 2rem;
}

.testimonials-header {


   text-align: center;
    max-width: 1200px;
  margin   :     0 auto 4rem;
}

.testimonials-header h2 {
  font-size:  2.5rem;
  margin-bottom: 0.5rem;
}

.testimonials-header p {
   font-size: 1.1rem;
      color: #bbb; 
	
}

.testimonials-container {
		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
   margin: 0 auto;
	}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
   border-radius:  12px;
    border-left: 4px solid #667eea;
  backdrop-filter: blur(10px);
}

.testimonial-text {
   font-size: 1rem;
     margin-bottom: 1.5rem;
  line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
   color: #667eea;
   font-weight:     600;
	font-size   :    0.95rem;
}@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1.5rem;
    }

    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }
}.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem;
  text-align    : center;
}

.cta-content h2 {
    font-size: 2.5rem;
     margin-bottom: 1rem;
}

.cta-content p {
    max-width: 600px;
   margin-bottom: 2.5rem;
	font-size: 1.1rem;
    margin-right: auto;
  margin-left: auto;
}

.cta-large {
    font-size: 1.1rem;
   color: #667eea;
   font-weight: 700;
    background: #ffffff; 
	
}

.cta-large:hover {
	background: #f0f0f0;
  color:  #764ba2;

}@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}.contact {
	background: #f8f9fa;
  padding :       5rem 2rem;
}

.contact-wrapper {
    max-width    :   700px;
       margin: 0 auto;
}

.contact h2		{
         font-size: 2.2rem;
  color: #1a1a2e;
 margin-bottom:    0.5rem;
  text-align: center;
}

.contact-subtitle {
 text-align: center;
    color: #666;
   margin-bottom:   2.5rem;
    font-size: 1rem;
}  

.contact-form {

  background: #ffffff;
      padding: 2.5rem;
       border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	}

.form-group {
		margin-bottom: 1.5rem;
     }

.contact-form input,
.contact-form textarea,
.contact-form select		{
	width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
   border-radius: 6px;
    transition    :  all 0.3s ease;
          background: #ffffff;
	color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
      color     :        #999;


}

.form-submit {
      width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
     border-radius: 6px;
  font-weight: 600;
   font-size  :    1rem;
   cursor: pointer;
	transition: all 0.3s ease;
}

.form-submit:hover {


  transform: translateY(-2px);
	  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
     }@media (max-width: 768px) {
    .contact {
        padding: 3rem 1.5rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.footer {
      background: #1a1a2e;
  color     :  #ffffff;
  padding: 4rem 2rem 2rem;
}


.footer-container {
	max-width: 1200px;
  margin: 0 auto;
   display: grid;
	 grid-template-columns: auto 1fr;
   gap: 4rem;
    align-items: start;
  margin-bottom     :2rem;
}

.footer-logo-section {
        flex-shrink : 0;
}  

.footer-logo {

  height: 86px;
  width: auto;
  filter: brightness(0) invert(1);


}

.footer-content {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap:  3rem;
	}

.footer-column h4 {
      font-size :    1rem;
    font-weight: 600;
  margin-bottom: 1.2rem;
  color: #ffffff;
     }

.footer-links {
  list-style: none;
}

.footer-links li		{
	 margin-bottom: 0.7rem;
}

.footer-links a {
   color: #bbb;
       transition    :      color 0.3s ease;
      font-size: 0.95rem;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-address {
   font-size:     0.9rem;
    color: #bbb;
  line-height: 1.7;
  margin-bottom:  1rem;
}

.footer-phone a {
    color:     #667eea;
    font-weight: 600;
   transition: color 0.3s ease;
}

.footer-phone a:hover {
  color: #764ba2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
	      padding-top: 2rem; 
	    text-align: center; 
	    color: #999; 
	    font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding     :     5rem 2rem;
  text-align: center;
}

.services-hero-content h1 {
  font-weight: 700;
    margin-bottom: 1rem;
   font-size: 2.8rem;
	
}

.services-hero-content p {
   font-size: 1.2rem;
                    opacity   :     0.95;
               max-width: 600px;
   margin: 0 auto;
}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 1.5rem;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }
}.services-grid-main {
     padding: 5rem 2rem;
  background: #f8f9fa; 
	
}

.services-container {
  max-width: 1200px;
	margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-box {
    background: #ffffff;
  border-radius    :    12px;
   overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-box-lg     {
	 grid-column: span 2;
    display: grid;
  grid-template-columns: 1fr 1fr;
}  

.service-box:hover {
  transform: translateY(-8px);
     box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.service-image {
   width: 100%;
   height: 250px;
        overflow: hidden;
}

.service-image img {
    width: 100%;
  height:  100%;
  object-fit   :    cover;
	 transition: transform 0.3s ease;
}

.service-box:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 2rem;
    display: flex;
    flex-direction: column;
  justify-content: space-between;
   flex-grow: 1;
}

.service-box h2,
.service-box h3 {
			font-size: 1.4rem;

	  color  :       #1a1a2e;

	   margin-bottom: 0.8rem;
}

.service-box p {
    color  :  #666;
   font-size  :        0.95rem;
        line-height: 1.6;
   margin-bottom: 1.5rem;
}

.service-features {
	list-style :none;
	margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 0.9rem;
   color: #555;
   padding-left     :      1.5rem;
  position: relative;
   padding    :    0.5rem 0;
}

.service-features li:before {
  content: "✓";
	position     :        absolute;
   left   : 0;
  color: #667eea;
   font-weight: bold;
}

.service-price {
	    font-size: 1.3rem;

	   font-weight: 700;

		color: #667eea;

	   margin-bottom: 1rem; 
	
	}

.service-cta {
   display: inline-block;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
   border-radius:      6px;
  font-weight: 600;
   transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.service-box-lg .service-image {
    height: 100%;
    min-height: 400px;
}

.service-box-lg .service-content   {
   padding: 2.5rem;
}@media (max-width: 1024px) {
    .service-box-lg {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
    }

    .service-box-lg .service-image {
        height: 250px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .services-grid-main {
        padding: 3rem 1.5rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-box-lg {
        grid-column: span 1;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-box h2,
    .service-box h3 {
        font-size: 1.2rem;
    }
}.packages-section {
 padding: 5rem 2rem;
   background: #ffffff;
}

.packages-header {
                    text-align: center;
    max-width:        1200px;
    margin: 0 auto 4rem;
}

.packages-header h2 {
	font-size: 2.5rem;
  color :    #1a1a2e;
    margin-bottom :        0.5rem;
}

.packages-header p {
   font-size: 1.1rem;
	 color    :    #666;
}

.packages-grid
{
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
    max-width: 1200px;
  margin: 0 auto;
}

.package-card {
   background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
  padding :2.5rem;
   text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
   border-color: #667eea;
}

.package-featured {
		border  : 2px solid #667eea;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
  transform: scale(1.05);
}

.package-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-badge {
  position  :    absolute;
	top   : -12px;
   left: 50%;
  transform: translateX(-50%);
   background: #e0e0e0;
   color: #555;
   padding   :  0.4rem 1rem;
  border-radius: 20px;
   font-size  :    0.8rem;
     font-weight: 600;
    text-transform: uppercase;
}

.badge-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: #ffffff;
}

.package-card h3 {
   font-size: 1.5rem;
  color: #1a1a2e;
   margin: 1.5rem 0 1rem;
}

.package-price {
   font-size: 2.2rem;
	font-weight: 700;
	 color: #667eea;
   margin-bottom : 0.3rem;
	
}

.package-period {
    color   :#999;
  font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.package-list {
  list-style: none;
      margin: 2rem 0;
  text-align: left;
}

.package-list li {
  color: #666;
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
      font-size :       0.95rem;
}

.package-list li:before {
    font-weight: bold;
  content: "✓";
    position: absolute;
   left: 0;
   color: #667eea;
}

.package-btn		{
    display: block; 
  font-weight: 600; 
    background:       #e0e0e0; 
   text-align: center; 
    margin-top: 1.5rem; 
  border-radius: 6px; 
  width: 100%; 
  padding: 0.95rem 1.5rem; 
					transition: all 0.3s ease; 
       color: #333;
}

.package-btn:hover {
   background:       #d0d0d0;
    color: #1a1a2e;
}

.package-btn-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: #ffffff;
}

.package-btn-featured:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}@media (max-width: 768px) {
    .packages-section {
        padding: 3rem 1.5rem;
    }

    .packages-header h2 {
        font-size: 1.8rem;
    }

    .package-featured {
        transform: scale(1);
    }

    .package-featured:hover {
        transform: translateY(-10px);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}.process-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
   padding: 5rem 2rem;
}

.process-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.process-header h2 {
    font-size: 2.5rem;
   color: #1a1a2e;
		margin-bottom  :       0.5rem;
	
} 

.process-header p


{
  font-size   : 1.1rem;
   color: #666;
}

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    :2.5rem;
   max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: #ffffff;
    padding: 2.5rem;
 border-radius:       12px;
	text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {

	  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
	}

.step-number {
 font-size: 3rem;
   font-weight: 700;
	color: #667eea;
  margin-bottom   : 0.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
  margin-bottom: 1rem;
}

.process-step p {
	 color: #666;
				 line-height: 1.6;
  font-size: 0.95rem;
}@media (max-width: 768px) {
    .process-section {
        padding: 3rem 1.5rem;
    }

    .process-header h2 {
        font-size: 1.8rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-number {
        font-size: 2.5rem;
    }
}.faq-section {
   padding: 5rem 2rem;
   background: #f8f9fa;
}

.faq-header {
   text-align: center;
  max-width: 1200px;
  margin    :     0 auto 4rem;
}

/* Legacy code */

.faq-header h2 {
        font-size    :       2.5rem;
   color: #1a1a2e;
   margin-bottom: 0.5rem;
} 

.faq-header p
	{
  font-size    : 1.1rem;
    color: #666;
}

.faq-container		{
  max-width :      900px;
   margin: 0 auto;
}

.faq-item {


  background: #ffffff;

  margin-bottom    :1.5rem;

  border-radius: 8px;

   overflow: hidden;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);

    transition :    all 0.3s ease;
	}

.faq-question {

   padding: 1.8rem;
    cursor: pointer;
  display: flex;
    justify-content: space-between;
    align-items: center;
	background: #ffffff;
    transition: all 0.3s ease;

}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h4 {
	 font-size: 1.1rem;
   color  :#1a1a2e;
  margin: 0;
  text-align: left;
}

.faq-toggle {


    font-size: 1.5rem;
   color: #667eea;
	 font-weight: bold;
   transition: transform 0.3s ease;}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
   max-height: 0;
  overflow: hidden;
   transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
   max-height: 500px;
}

.faq-answer p {
   padding: 0 1.8rem 1.8rem;
   color: #666;
  line-height: 1.8;
   font-size: 0.95rem;
}
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1.5rem;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1.3rem;
    }

    .faq-answer p {
        padding: 0 1.3rem 1.3rem;
    }
}.cta-final   {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: #ffffff;
   padding: 4rem 2rem;
	text-align: center;
}

.cta-final h2 {
     font-size :        2.2rem;
   margin-bottom: 1rem;

}

.cta-final p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
  opacity:      0.95;

}@media (max-width: 768px) {
    .cta-final {
        padding: 2.5rem 1.5rem;
    }

    .cta-final h2 {
        font-size: 1.6rem;
    }

    .cta-final p {
        font-size: 1rem;
    }
}.thankyou-container {

  min-height: calc(100vh - 300px);
   display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
      margin: 0 auto;
	position: relative;


}

.thankyou-content {
  text-align: center; 
   z-index    :      2;
}

.success-icon {
    width: 120px;
  height: 120px;
    margin: 0 auto 2rem;
}

.success-icon img   {
  width: 100%;
       height: 100%;
     filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
     animation: bounce 0.6s ease-in-out;
}@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}.thankyou-container h1   {
   font-size: 2.5rem;
   color :   #1a1a2e;
   margin-bottom: 1rem;
  font-weight    :700;
}

.success-message    {
	font-size: 1.2rem;
 color  : #667eea;
    margin-bottom: 2rem;
    font-weight: 600;
}

.thank-you-info {
  background    :   #f8f9fa;
         padding: 2rem;
   border-radius: 10px;
        margin-bottom: 2rem;
   border-left :  4px solid #667eea;
	
}

.thank-you-info p {
    color: #555;
   margin-bottom: 1rem;
               line-height: 1.6;
}

.thank-you-info strong {
   	color: #667eea;
     }

.next-steps {
    list-style   :       none;
   text-align: left;
    margin-top: 1rem;
}

.next-steps li {
					position: relative; 
          padding: 0.5rem 0; 
   color: #666; 
    padding-left: 1.5rem;


}

.next-steps li:before  {

	  content: "→";
  position     : absolute;
    left: 0;
  color   :      #667eea;
  font-weight: bold; 
	


}

.action-buttons {
	  justify-content: center;
   display: flex;
  gap: 1.5rem;
    margin-bottom:  2rem;

}

.button-primary,
.button-secondary {
   padding: 1rem 2rem;
    border-radius: 6px;
   font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.button-primary {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
	
	}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.button-secondary {
   color: #1a1a2e;
  background: #e0e0e0;
}

.button-secondary:hover


{
	background: #d0d0d0;
}

.contact-info-thankyou {
  font-size  : 0.95rem;
    color: #666;
}

.contact-phone a {
	color: #667eea;
   font-weight    :600;
}

.contact-phone a:hover {
   color: #764ba2;
}

.thankyou-visual {
  position: relative;
   height :       400px;
} 

.animated-circle {
	position: absolute;
    border-radius: 50%;
   opacity     :   0.1;
   animation: float 6s ease-in-out infinite; 

}

.circle-1 {
    width: 200px;
	height: 200px;
  background: #667eea;
	top:     50px;
   right: 50px;
  animation-delay: 0s;
} 

.circle-2 {
   width: 150px;
	  height: 150px;
	    background    :       #764ba2;
	         bottom :     100px;
	   right: 150px;
	   animation-delay: 1s;
}

.circle-3 {
  width: 180px;
    height    :       180px;
   background: #667eea;
	bottom: 50px;
  right: 10px;
  animation-delay: 2s;
}@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

@media (max-width: 768px) {
    .thankyou-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .thankyou-visual {
        display: none;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }
}.next-value-section {
	 background: #f8f9fa;
	padding: 5rem 2rem;
}

.value-header {
    text-align    :   center;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.value-header h2 {
          font-size: 2.5rem; 
    margin-bottom   :   0.5rem; 
   color: #1a1a2e; 

}

.value-header p {
  font-size: 1.1rem;
    color: #666;
}

.value-grid {
   display     :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2.5rem;
   max-width: 1200px;
	 margin: 0 auto;
}


.value-card {
  background: #ffffff;
   padding: 2.5rem;
    border-radius: 10px;
    text-align:  center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
       transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.value-number {
    font-size: 3rem;
  font-weight: 700;
    color: #667eea;
	 margin-bottom: 0.5rem; 

}

.value-card h3{

		 font-size     :   1.3rem;
   color: #1a1a2e;
	 margin-bottom: 1rem; 

     }

.value-card p {
         color: #666;
          line-height: 1.6;
   font-size: 0.95rem;
	
}@media (max-width: 768px) {
    .next-value-section {
        padding: 3rem 1.5rem;
    }

    .value-header h2 {
        font-size: 1.8rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-number {
        font-size: 2.5rem;
    }
}.testimonials-thankyou {

  background: #1a1a2e;
	color: #ffffff;
  padding: 5rem 2rem;


     }

.testimonials-header {
	 text-align: center;
    margin: 0 auto 4rem;
   max-width: 1200px;
}

.testimonials-header h2 {

  font-size: 2.5rem;
		 margin-bottom: 0.5rem;}

.testimonials-header p    {
       font-size: 1.1rem;
	color: #bbb;

}@media (max-width: 768px) {
    .testimonials-thankyou {
        padding: 3rem 1.5rem;
    }

    .testimonials-header h2 {
        font-size: 1.8rem;
    }
}

.policy-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
    min-height: calc(100vh - 400px);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
    font-size: 2.8rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
}

.policy-container h2 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-container p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.policy-container strong {
    color: #667eea;
    font-weight: 600;
}

.policy-container a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-container a:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (prefers-reduced-motion: no-preference) {
    .policy-container {
        animation: slideUp 0.6s ease-out;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-container h1 {
        font-size: 2.3rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 2.5rem 1rem;
        min-height: auto;
    }

    .policy-container {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
}@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem 0.8rem;
    }

    .policy-container {
        padding: 1.2rem;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    .policy-container p {
        font-size: 0.9rem;
    }
}body {
       display: flex;
  min-height: 100vh;
   flex-direction: column;
}

.policy-section {
  flex: 1;
}

.footer    {
    margin-top: auto;
}
