* {
  padding: 0; 
  margin: 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: #ffffff;
     }

a {
    text-decoration: none;
       color: inherit;
} 

.navbar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 1rem 0;
  position: sticky;
       top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
	max-width: 1200px;
  margin: 0 auto;
                    display    :       flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
   align-items: center;
}

.logo-img {
  height: 40px;
	  width: auto;
	  filter: brightness(0) invert(1);
}

.nav-links {
   display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {


   color: #ffffff;
   font-size: 0.95rem;
    font-weight: 500;
         transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 0.5rem;
   border-bottom: 2px solid transparent;

}

.nav-link:hover {
  color: #00d4ff;
   border-bottom     :      2px solid #00d4ff;
}

.hamburger {
 display: none;
        background: none;
    border: none;
  cursor  :      pointer;
    flex-direction: column;
  gap: 0.4rem;
}

.hamburger img {
	   width: 28px;
    height: 28px;
  filter: brightness(0) invert(1);
     }

.hero-section {
  display: grid;
	 grid-template-columns: 1fr 1fr;
   align-items: center;
   gap: 3rem;
      max-width: 1200px;
	margin     :        0 auto;
	padding: 6rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.hero-content h1 {
   font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
         margin-bottom     :        1.5rem;
    color     :    #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-clip: text;
}

.hero-subtitle {
    font-size  :      1.15rem;
   color: #555;
   margin-bottom: 2rem;
   line-height:1.7;
}

.cta-button {

  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 0.9rem 2.5rem;
                    border-radius: 50px;
    font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);


} 

.cta-button:hover     {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5); 
	
}

.hero-image img 
 {
   width: 100%;
     height: auto;
      border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.15);


}

.intro-section {
   max-width: 1200px;
	margin: 4rem auto;
   padding: 3rem 2rem;
   text-align: center;
}

.intro-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.intro-section p {
   font-size: 1.1rem;
    color :   #666;
       max-width: 700px;
    margin :0 auto;
}

.features-section    {
        max-width: 1200px;
    padding: 3rem 2rem;
  margin: 4rem auto;
}

.features-section h2 {
    font-size: 2.5rem;
   text-align   :center;
   margin-bottom     :       3rem;
   color: #1a1a2e;
}

.features-grid   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :  2rem;


}

.feature-card {
  background: white;
   padding: 2rem;
    border-radius: 15px;
		 text-align: center;
   border: 1px solid #e0e0e0;
   transition:        transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  margin-bottom: 1.5rem;
  height: 60px;
                    display:     flex;
  justify-content: center;
  align-items:        center;


}



.feature-icon img {
  width: 50px;
   height: 50px;
  filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.3));



}

.feature-card h3 {
   font-size:  1.5rem;
    margin-bottom: 1rem;
  color: #1a1a2e;
}

.feature-card p {


   font-size     :     0.95rem;
    color: #666;
  line-height: 1.6;

}

.coaching-section {
	 max-width: 1200px;
    margin: 4rem auto;
   padding: 3rem 2rem;
}

.coaching-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}



.coaching-item {
   background: white;
    border-radius: 15px;
	overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.coaching-item:hover {
  transform: translateY(-5px);
}

.coaching-item img {
  width: 100%;
   height: 200px;
		object-fit: cover;
}



.coaching-item h3 {
    padding:      1.5rem 1.5rem 0.5rem;
  font-size    :  1.3rem;
    color:     #1a1a2e;
}

.coaching-item p {
   padding: 0 1.5rem 1.5rem;
  color  :       #666;
    font-size: 0.95rem;
}

.transformation-section	{

	      max-width: 1200px;
   margin: 4rem auto;
	 padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 20px;}

.transformation-content h2 {
   font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
  color: #1a1a2e;
}

.transformation-steps {
				 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap :     2rem;
}

.step {
   text-align: center;
   padding: 2rem;
}  

.step-number {
   display: inline-block;
  width: 60px;
	height  :        60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
   font-size: 1.8rem;
	font-weight: bold;
	 display: flex;
    align-items  :        center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.step p
{
   color    :     #666;
   font-size:     0.95rem;
}

.testimonials-section {


	padding: 3rem 2rem;
   margin: 4rem auto;
  max-width: 1200px;

}  

.testimonials-section h2 {
  font-size: 2.5rem;
	 text-align: center;
   margin-bottom: 3rem;
  color: #1a1a2e;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;
}

.testimonial-card {
    background: white;
     padding: 2rem;
   border-radius: 15px;
    border-left: 4px solid #667eea;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
   font-size  :        0.95rem;
   color: #666;
  margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-weight :       600; 
	    color: #1a1a2e; 
	      font-size: 0.9rem;
}

.pricing-section {
   max-width: 1200px;
  margin: 4rem auto;
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   border-radius    :  20px; 
	
}

.pricing-section h2	{

 font-size  :        2.5rem;
   text-align:   center;
  margin-bottom: 3rem;
   color  :  #1a1a2e;
}

.pricing-grid   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.pricing-card {
	   background: white;
   padding: 2.5rem;
    border-radius: 15px;
    text-align    : center;
    border: 1px solid #e0e0e0;
   transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	
}

.pricing-featured {
	border: 2px solid #667eea;
  transform: scale(1.05);
}

.pricing-card h3   {
   font-size: 1.5rem;
	 margin-bottom: 1rem;
   color  :     #1a1a2e;
	
}

.price {
    font-size: 2.5rem;
  font-weight: 800;
   color: #667eea;
	margin: 1rem 0;
}

.price-period {
   color: #999;
   font-size: 0.85rem;
        margin-bottom: 1.5rem;
}

.pricing-features {
		 list-style: none;
   text-align: left;
    margin-bottom: 2rem;


}

.pricing-features li {
   padding: 0.6rem 0;
    color: #666;
    font-size  :  0.9rem;
   position: relative;
  padding-left     :1.5rem;
}

.pricing-features li:before {
  content: "✓";
   position: absolute;
	left: 0;
   color: #667eea;
    font-weight: bold;
}

.pricing-button {
  width: 100%;
   padding :0.9rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
               border: none;
				 border-radius  :    50px;
	font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3); 
	
}

.webinar-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
}

.webinar-section h2 {
  font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
  color  :   #1a1a2e;
}

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}


.webinar-card {
	border: 1px solid #e0e0e0;
   background: white;
 transition: transform 0.3s ease;
   padding :      2rem;
  border-radius: 15px;
}

.webinar-card:hover {
  transform: translateY(-5px);
}

.webinar-card h4 {
                    font-size  :        1.3rem;
    margin-bottom:  1rem;
   color: #1a1a2e;
	}

.webinar-card p {
  color: #666;

	    font-size: 0.95rem;

	  margin-bottom: 1rem;


}

.webinar-date {
  color:       #667eea;
  font-weight     : 600;
  font-size: 0.9rem; 

}

.cta-section {
   max-width: 1200px;
  margin: 4rem auto;
	 padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
  color: white;
        text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
  margin-bottom:  1rem;
}

.cta-content p {
    font-size: 1.1rem;
	 margin-bottom: 2rem;
	 opacity: 0.95;
}

.cta-button-large {
       display: inline-block;
  background: white;
    color: #667eea;
  padding: 1rem 3rem;
  border-radius: 50px;
   font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size     :    1rem;


}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2); 
	
}



.contact-section {
  max-width: 1200px;
    margin: 4rem auto;
  padding: 3rem 2rem;
}

.contact-section h2 {
	font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
   color: #1a1a2e;
}


.contact-wrapper {
   display: grid;
       grid-template-columns: 1fr 1fr;
  gap  :   3rem;
}



.contact-form {
       display: flex;
         flex-direction: column;
    gap: 1.5rem;


}

.form-group {
        display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
   	 padding: 0.9rem;
   border: 1px solid #e0e0e0;
   border-radius: 8px;
	font-family: inherit;
     font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 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);


}

.form-group textarea {
  resize  :vertical;
   min-height   :   120px;
}

.form-button {
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color    : white;
   border: none;
   border-radius   :       8px;
          font-weight  :      600;
   cursor: pointer;
    transition:        transform 0.3s ease, box-shadow 0.3s ease;
   font-size: 1rem;
}

.form-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.contact-info
	{
  display: flex;
   flex-direction: column;
   gap     :   2rem;
}

.contact-info h3 {
				 font-size: 1.5rem;
  color: #1a1a2e;
}

.info-item {
   padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 10px;
}  

.info-label {
   	font-weight: 600;
  color: #1a1a2e;
    margin-bottom: 0.3rem;

}

.info-item p {
   color: #666;
	 margin: 0;
}

.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 3rem 0 1rem;
   margin-top: 4rem;
}

.footer-container {
	max-width    : 1200px;
  margin: 0 auto;
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
    padding: 0 2rem;
   margin-bottom: 2rem;
}

.footer-section h4 {


  font-size:      1.1rem;
   color: #ffffff;
      margin-bottom: 1.5rem;
	}

.footer-logo-img {
   height: 35px;
  width   :      auto;
  filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bbb;
   transition: color 0.3s ease;
}

.footer-links a:hover    {
   color: #00d4ff;
}

.footer-section p {
   color  :#bbb;
  font-size: 0.9rem;
    line-height: 1.7;
}

.footer-phone {
  font-weight: 600;
	 color: #ffffff;
    margin-top  :       0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
   color: #999;
  font-size: 0.85rem;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #16213e;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        text-align: left;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .features-grid,
    .coaching-grid,
    .testimonials-grid,
    .pricing-grid,
    .webinar-grid {
        grid-template-columns: 1fr;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .transformation-steps {
        grid-template-columns: 1fr 1fr;
    }

    .intro-section h2,
    .features-section h2,
    .testimonials-section h2,
    .pricing-section h2,
    .webinar-section h2,
    .transformation-content h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        background: none;
        -webkit-text-fill-color: unset;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        top: 60px;
    }

    .transformation-steps {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .info-item {
        padding: 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  :  white;
   padding:     5rem 2rem;
    text-align: center;
    min-height: 300px;
   display   :        flex;
               align-items: center;
  justify-content:        center;
}

.services-hero-content h1 {
    font-size :3rem;
        font-weight: 800;
          margin-bottom: 1rem;
}

.services-hero-content p {
   font-size: 1.2rem;
   opacity: 0.95;
  max-width: 600px;
	margin     :       0 auto;
}

.services-overview {
    max-width: 1200px;
  margin: 4rem auto;
	padding: 3rem 2rem;
    text-align: center;
}

.services-overview-content h2 {
  font-size :       2.5rem;
    margin-bottom: 1.5rem;
	color: #1a1a2e;
}

.services-overview-content p {
   font-size: 1.1rem;
   color: #666;
   max-width: 700px;
      margin: 0 auto;
}

.service-cards-section {
	max-width    :       1200px;
  margin: 3rem auto;
	padding: 0 2rem;
  display: flex;
   flex-direction: column;
    gap: 3rem;
}

.service-card-full {

  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
    background: white;
  border-radius: 15px;
                    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-full:hover {
  transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card-alternate {
    direction: rtl;
}

.service-card-alternate > * {
               direction:  ltr;
} 

.service-card-image  {
  overflow: hidden;
   height: 100%;
    min-height: 400px;
}

.service-card-image img{
  height: 100%;
   object-fit:   cover;
  width: 100%;
}

.service-card-content {

   padding: 2.5rem;
	}

.service-card-content h3 {
    font-size: 2rem;
   margin-bottom: 0.8rem;
   color   :#1a1a2e; 

}

.service-price {
      font-size:  1.3rem;
    color: #667eea;
	font-weight :  700;
   margin-bottom :  1rem;
}

.service-description
	{
   font-size: 1rem;
  color   :  #666;
	 line-height: 1.7;
   margin-bottom: 1.5rem;
}

.service-features h4 {
  font-size    :    1.1rem;
	color   :       #1a1a2e;
  margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
	
}

.features-list li {
   padding-left: 1.8rem;
  padding :0.5rem 0;
    color: #666;
   position: relative;
    font-size: 0.95rem;
}

.features-list li:before {
  content: "→";
    position: absolute;
    left: 0;
   color: #667eea;
	font-weight: bold;
}

.service-button {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
       padding: 0.9rem 2.5rem;
    border-radius: 50px;
        font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.conference-section {
	max-width: 1200px;
   margin :   4rem auto;
    padding  :       3rem 2rem;
}

.conference-section h2 {


    font-size :   2.5rem;
   text-align: center;
  margin-bottom :        0.5rem;
    color: #1a1a2e;}

.conference-subtitle {
               text-align    :    center;
	color: #666;
  font-size: 1.1rem;
   margin-bottom: 3rem;
}



.conference-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.conference-card {
    background  :     white;
               padding: 2.5rem;
   border-radius: 15px;
	border: 1px solid #e0e0e0;
  text-align     :   center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.conference-card h3 {
    font-size: 1.5rem;
   margin-bottom     :      0.8rem;
   color: #1a1a2e;
}

.conference-date {
	   margin-bottom: 1rem;

	    color: #667eea;

	   font-size: 0.95rem;

	  font-weight: 600; 

}

.conference-card p    {
	color : #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.conference-price{
  font-size: 1.8rem;
	font-weight: 800;
    color: #1a1a2e;
                    margin-bottom: 1.5rem;
}

.conference-button {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 0.8rem 2rem;
	border-radius: 50px;
  font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
	
} 

.conference-button:hover {
     transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.comparison-section {


  max-width: 1200px;
  margin: 4rem auto;
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	 border-radius: 20px;}

.comparison-section h2 {
  font-size: 2.5rem;
  text-align: center;
     margin-bottom  :  3rem;
   color: #1a1a2e;
}

.comparison-table {

    display: grid;
    grid-template-columns: 1fr;
	gap: 0;
          background: white;
  border-radius   :   15px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);}

.table-header {
    display:     grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
   gap: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :       white;
}

.table-header .table-cell {
   padding: 1.5rem;
   font-weight: 700;
    text-align: center; 

}

.table-row {
	 display: grid;
    grid-template-columns :   1fr 1fr 1fr 1fr;
          gap: 0;
  border-bottom: 1px solid #e0e0e0;



}

.table-row:last-child {

    border-bottom: none;
}

.table-cell {
        padding: 1.5rem;
   text-align: center;
  color: #666;
}

.table-row .table-cell:first-child {

	  text-align: left;
        font-weight: 600;
   color: #1a1a2e;}

.faq-section 
 {
    max-width: 1200px;
  margin  :    4rem auto;
	 padding: 3rem 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
   text-align :  center;
   margin-bottom: 3rem;
   color   : #1a1a2e;
}

.faq-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap :       2rem;

}

.faq-item
	{
         background: white;
       padding: 2rem;
  border-radius: 15px;
         border-left: 4px solid #667eea;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
	}

.faq-item:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.faq-item h4 {
       font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #1a1a2e;
}

.faq-item p {
    font-size:        0.95rem;
         color: #666;
    line-height: 1.6;
}

.services-cta {
   max-width    :     1200px;
    margin: 4rem auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 20px;
    color: white;
   text-align: center;
}

.services-cta h2 {
          margin-bottom: 1rem;
	font-size: 2.5rem;
}

.services-cta p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
  opacity: 0.95;
}

.thankyou-section {
       max-width: 900px;
   margin: 4rem auto;
    padding: 3rem 2rem;
	
}

.thankyou-container {
      display    :     flex;
	flex-direction  :column;
  gap: 4rem;
}

.thankyou-success {
   					text-align: center;
	padding:    3rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-radius: 20px; 
	
	}

.success-icon {
   margin-bottom: 2rem;
                    display: flex;
    justify-content    : center;
}

.success-icon img {
    width: 80px;
  height :      80px;
  filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.5));
}

.thankyou-success h1 {


   font-size   :   2.5rem;
					color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
               margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
  color    :       #667eea;
}

.thankyou-text {
   font-size: 1rem;
    color: #666;
    line-height: 1.7;
  max-width: 600px;
    margin  :   0 auto;
}

.thankyou-next-steps h2 {
   font-size: 2rem;
    color: #1a1a2e;
  margin-bottom: 2rem;
   text-align: center;


}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.step-card {
    background: white;
  padding: 2rem;
  border-radius: 15px;
       text-align: center;
    border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card .step-number	{
    display: inline-block;
  width: 50px;
     height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
    font-size: 1.5rem;
  font-weight   :        bold;
    display   :   flex;
    align-items: center;
          justify-content: center;
   margin-bottom: 1rem;
}

.step-card h3 {
     font-size: 1.2rem;
  margin-bottom: 0.8rem;
       color: #1a1a2e;



}

.step-card p {
    font-size: 0.95rem;
	 color: #666;
  line-height   :      1.6;
} 

.thankyou-additional {
  text-align: center;
	padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   border-radius  :15px;
}

.thankyou-additional h2 {

    font-size: 1.8rem;

  color  :     #1a1a2e;

	margin-bottom  :   1rem; 

     }

.thankyou-additional p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.additional-links {
    justify-content: center;
  display: flex;
  gap: 1rem;
    flex-wrap: wrap;
}

.additional-button {
  display   :       inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 0.9rem 2rem;
   border-radius: 50px;
    font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.additional-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.thankyou-contact-info {
    padding: 2.5rem;
      background: white;
   border-radius:        15px;
    border-left: 4px solid #667eea;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.thankyou-contact-info h3 {
	font-size: 1.5rem;
   color: #1a1a2e;
   margin-bottom  : 1rem; 

}

.thankyou-contact-info p {


    font-size :    0.95rem;
    color: #666;
    margin-bottom: 1.5rem;


}

.contact-details {
   text-align: left;
    max-width: 400px;
   margin: 0 auto;
}

.contact-details p {


  margin-bottom: 0.8rem;
                    font-weight: 500;
     }

.contact-details strong {
    color  :  #1a1a2e;
} @media (max-width: 768px) {
    .service-card-full {
        grid-template-columns: 1fr;
    }

    .service-card-alternate {
        direction: ltr;
    }

    .service-card-image {
        min-height: 250px;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .service-card-content h3 {
        font-size: 1.5rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
    }

    .table-header .table-cell:nth-child(n+3),
    .table-row .table-cell:nth-child(n+3) {
        display: none;
    }

    .comparison-section {
        margin: 2rem auto;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .additional-links {
        flex-direction: column;
    }

    .additional-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-card-full {
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .service-card-content {
        padding: 1.2rem;
    }

    .thankyou-success {
        padding: 2rem;
    }

    .thankyou-success h1 {
        font-size: 1.8rem;
    }

    .contact-details {
        text-align: center;
    }
}.policy-section {
		 padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 300px);
     }

.policy-container {
    max-width: 900px;
   margin   :        0 auto;
  text-align: left;
        background: white;
    padding: 3rem;
   border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.policy-container h1 {
    font-size: 2.8rem;
        color     :     #1a1a2e;
    margin-bottom: 2rem;
   font-weight    :  800;
    border-bottom: 3px solid #667eea;
   padding-bottom: 1rem;}

.policy-container h2 {
        font-weight: 700;
   font-size: 1.8rem;
	 margin-top: 2rem;
  color: #1a1a2e;
   margin-bottom: 1rem;
}

.policy-container p {
  color: #666;
  margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.policy-container strong {
  color     :        #1a1a2e;
  font-weight: 600;
}

.policy-container p strong {
    display  :inline-block;
                    color    :   #667eea;
   margin-right: 0.3rem;
	
}

.policy-container > p:first-of-type {
               font-size: 1.05rem;
    color: #555;
   margin-bottom: 2rem; 

}

.policy-container p:has(+ p strong) {
    margin-bottom: 0.5rem;
}

.policy-container h2:not(:first-of-type) {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.policy-container {
    line-height: 1.85;


}

.policy-container h2 + p {

	  margin-top:   1rem;


}

.policy-container a {
  color: #667eea;
    text-decoration: none;
        transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.policy-container a:hover {


   color: #764ba2;
    border-bottom: 1px solid #764ba2;}@media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-container h1 {
        font-size: 2.3rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
    }

    .policy-container p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
        border-radius: 10px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .policy-container {
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.8rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policy-container {
        line-height: 1.7;
    }
}