* {
   margin: 0;
  padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #1e3a8a;
    --accent-color: #f59e0b;
    --light-bg: #f8fafc;
    --dark-text: #0f172a;
    --gray-text: #475569;
    --border-color: #e2e8f0;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.15);
}

html {
   scroll-behavior :       smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--dark-text);
	background-color: #ffffff;
   line-height: 1.6;
}

.navbar {
    background-color: #ffffff;
    padding:       1.2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
  z-index: 100;
}

.nav-container {
   padding: 0 20px; 
	    justify-content: space-between; 
	  max-width: 1200px; 
		align-items: center; 
	   display: flex; 
		margin: 0 auto;
}

.nav-logo img {
  height: 94px;
	width: auto;
	display: block;
}

.nav-menu {
  display:flex;
   list-style: none;
   gap: 2.5rem;
   align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-text);
  font-weight    :500;
  font-size: 1rem;
    transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after  {
  content: '';
   position: absolute;
    bottom: -5px;
                    left: 0;
	 width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after  
  {
    width: 100%;
}

.burger-menu {
    display   :   none;
   flex-direction   :        column;
  background: none;
   border: none;
  cursor: pointer;
  gap: 6px;
}

.burger-menu span
{
     width: 25px;
  height: 3px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: all 0.3s ease;
	}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
	
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
     color: white;
      padding : 100px 20px;
     text-align: center;
     position: relative;
       overflow: hidden;
    min-height: 600px;
      display: flex;
       align-items: center;
       justify-content: center;
}

.hero::before {
  content: '';
     position: absolute;
  top: 0;
    right :   0;
          width :        400px;
   height: 400px;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  transform: translate(100px, -100px);
}

.hero::after {
  content: '';
  position:  absolute;
 bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
  background: rgba(255, 255, 255, 0.08);
               border-radius: 50%;
  transform: translate(-100px, 100px);
}

.hero-content {
	  position: relative;
  z-index: 2;
  max-width: 800px;


}

.hero-title {
  font-size: 3.5rem;
    font-weight: 800;
	 margin-bottom:   1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
          font-size: 1.3rem;
   margin-bottom: 2rem;
   opacity: 0.95;
  font-weight: 300;
}

.hero-cta {
    display: inline-block;
  background-color: var(--accent-color);
  color: var(--dark-text);
  padding: 15px 45px;
   border-radius: 50px;
   text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
    transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
   background-color: #fbbf24;
}

section {
    padding: 80px 20px;
  max-width: 1200px;
    margin: 0 auto;
}

h2 {
	  font-size: 2.5rem;
    margin-bottom: 1.5rem;
  color: var(--dark-text);
   font-weight: 700;
}

h3 {
   font-size: 1.4rem;
   margin-bottom: 1rem;
  color: var(--dark-text);
   font-weight: 600;
}

.section-intro {
   background-color: #ffffff;
}

.section-grid {

                    display: grid; 
	    grid-template-columns: 1fr 1fr; 
	    gap: 4rem; 
	  align-items: center;

}

.intro-text p {
    margin-bottom: 1.5rem;
  color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.intro-image img {
  width: 100%;
    border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.section-benefits {
  background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);
}

.benefits-grid
{
    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  margin-top: 3rem;
}

.benefit-card {
    background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
   transition: all 0.3s ease;
  border-left: 5px solid var(--accent-color);
}


.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.benefit-number {
	 font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
   opacity:   0.3;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--gray-text);
	  line-height: 1.7;
}

.section-strategy {
    background: white;
}

.strategy-layout {
  gap: 4rem;
   align-items: center;
    display    :grid;
        grid-template-columns: 1fr 1fr;
	
}

.strategy-image img
	{
  width: 100%;
          border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.strategy-content p {
	  color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
  font-size: 1.05rem;}

.strategy-list {
    list-style: none;
    margin-top: 2rem;
}

.strategy-list li
{
    padding: 0.8rem 0;
  padding-left    :2rem;
  position: relative;
  color: var(--gray-text);
  font-weight: 500;


}

.strategy-list li::before {
     content: '';
  position: absolute;
   left: 0;
      top: 50%;
  transform: translateY(-50%);
    width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;

}

.section-webinars {
     background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);


}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-text);
    margin-bottom: 3rem;
   margin-top: -1rem;
}

.webinars-container {
   display  :   grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top  :   3rem;
}  

.webinar-item {
   background: white;
    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.webinar-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.webinar-icon-box {
   width: 60px;
  height: 60px;
	 margin:      0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
  align-items: center;
   justify-content: center;
   color: white;
   font-weight: 600;
    font-size: 0.85rem;
}

.webinar-item p {
  color: var(--gray-text);
   line-height: 1.7;
   margin-bottom  :1rem;
}

.webinar-meta {
  font-size: 0.95rem;
  color: var(--primary-color);
    font-weight: 600;
   margin-top: 1.5rem; 

}

.section-case-studies {
   background: white;
}

.case-grid {
  display: grid;
               grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
    margin-top: 3rem;
}

.case-col-img img{
	 width: 100%;
   border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.case-col-text h3 {
	margin-top: 0;

  color: var(--primary-color);
}

.case-col-text p {
  color: var(--gray-text);
  margin-bottom: 1.5rem;
   line-height: 1.8;
}

.case-list {
  list-style: none;
    margin: 1.5rem 0;
   padding-left: 0;

}

.case-list li {


   padding: 0.8rem 0;
   padding-left: 2rem;
    position: relative;
  color: var(--gray-text);
}

.case-list li::before {
  content: '✓'; 
  position: absolute; 
    left: 0; 
  color: var(--accent-color); 
  font-weight  :      700; 
   font-size: 1.2rem;
} 

.section-planning {
  background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);
}

.planning-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
  margin-top :        3rem;
}

.planning-text p {
  color: var(--gray-text);
   margin-bottom: 1.5rem;
   line-height: 1.8;
  font-size: 1.05rem;
}

.planning-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.section-workshop {
   background: white;
}

.workshop-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
  margin-top: 3rem;
} 

.workshop-image img {
    width    :  100%;
    border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.workshop-text p {
  color: var(--gray-text);
  margin-bottom    :    1.5rem;
    line-height: 1.8;
}

.workshop-features {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 1rem;
        margin-top: 2rem;
}

.feature {
  background: linear-gradient(135deg, var(--light-bg), var(--primary-color));
   background-clip    :  text;
    padding     :      1rem;
  border: 1px solid var(--border-color);
    border-radius: 8px;
  text-align: center;
   font-weight: 600;
}

.section-testimonials {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.section-testimonials h2 {
  color: white;
   margin-bottom: 3rem;
}

.testimonials-grid {

	  gap: 2rem;
    display: grid;
  grid-template-columns: repeat(3, 1fr);

}

.testimonial-card {
     background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
   padding: 2.5rem;
	border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
	

}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
  line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size     : 1.05rem;
}

.testimonial-author {
  color: var(--accent-color);
  font-weight: 600;
	}

.section-pricing {
   background: white;


}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
  margin-top: 3rem;


}

.pricing-card {
   background: white; 
  border: 2px solid var(--border-color); 
    border-radius: 12px; 
   padding: 2.5rem; 
  text-align: center; 
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.pricing-card-featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
                    color: white;
      border: none;
  transform: scale(1.05);
}

.pricing-card-featured:hover
	{
  transform: scale(1.05) translateY(-5px);

}

.pricing-description {
  color: var(--gray-text);
   font-size    :      0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-card-featured .pricing-description {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
   font-size: 1.3rem;
  font-weight: 700;
   margin     :    1.5rem 0;
  color: var(--primary-color);
}

.pricing-card-featured .pricing-price {
  color: var(--accent-color);
}

.pricing-features {


	list-style: none;
  text-align: left;
    margin: 2rem 0;


}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--gray-text);
}

.pricing-card-featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
    color :        white;
}

.pricing-button {
  background: var(--accent-color);
  color: var(--dark-text);
   border: none;
   padding: 12px 30px;
  border-radius :  50px;
  font-weight: 600;
    cursor :  pointer;
   transition: all 0.3s ease;
    width: 100%;
   margin-top: 1.5rem;
}

.pricing-button:hover     {
    background: #fbbf24;
  transform: translateY(-3px);
}

.pricing-card-featured .pricing-button {
 background: white; 
	  color: var(--primary-color);
}

.pricing-card-featured .pricing-button:hover {
   background: #f3f4f6;


}

.section-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
    text-align: center;
	
}

.cta-wrapper h2 {
   color: white;
   margin-bottom: 1.5rem;
                    font-size: 2.5rem;
}

.cta-wrapper p {
  margin-right: auto;
  opacity     :  0.95;
    margin-left: auto;
  font-size: 1.2rem;
    margin-bottom: 2rem;
   max-width: 600px;
}

.cta-button {
   display: inline-block;
  background-color: var(--accent-color);
  color: var(--dark-text);
  padding: 15px 45px;
   border-radius: 50px;
    text-decoration: none;
 font-weight: 600;
	 font-size: 1.05rem;
   transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    background-color: #fbbf24;
}

.section-contact {


  background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);


}

.contact-subtitle {
      font-size     :  1.2rem;
  color: var(--gray-text);
     margin-bottom: 3rem;
    margin-top: -1rem;
}

.contact-form {
  max-width: 700px;
    margin: 0 auto;
   background: white;
	padding: 3rem;
	border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
   padding: 12px 15px;
  border: 2px solid var(--border-color);
    border-radius     :     8px;
	font-family: inherit;
   font-size: 1rem;
  color: var(--dark-text);
                    transition: all 0.3s ease;
	
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
   outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-button {
   width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
    border: none;
    border-radius: 8px;
   font-weight: 600;
   font-size: 1.05rem;
 cursor: pointer;
   transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.footer {
  background   :  #1f2937;
               color: white;
	 padding: 60px 20px 30px;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
    grid-template-columns: 2fr 1fr 1fr;
   gap: 3rem;
       margin-bottom: 3rem;
}

.footer-logo {
  height: 136px;

  width: auto;

  filter: brightness(0) invert(1);

    margin-bottom: 1.5rem;
}

.footer-info p {
  margin-bottom: 0.8rem;
    line-height: 1.8;
   color: #d1d5db;

}

.footer-nav h4,
.footer-info h4 {
	margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: white;


}

.footer-nav ul {
   list-style: none;
}

.footer-nav li {
     margin-bottom: 0.8rem;}

.footer-nav a {
  color: #d1d5db;
  transition: color 0.3s ease;
          text-decoration: none;
}

.footer-nav a:hover {
  color: var(--accent-color); 

}

.footer-bottom {
  border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
   color: #9ca3af;
    max-width: 1200px;
   margin:     0 auto;
}@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-grid,
    .strategy-layout,
    .case-grid,
    .planning-grid,
    .workshop-content {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .webinars-container,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 60px 20px;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        display: block;
    }

    .burger-menu {
        display: flex;
    }

    .workshop-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .section-grid,
    .strategy-layout {
        gap: 2rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .footer-container {
        gap: 2rem;
    }

    section {
        padding: 40px 15px;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 20px;
     text-align: center;
    position     :relative;
	overflow: hidden;
   min-height: 400px;
  display: flex;
   align-items:  center;
	justify-content: center;
}

.services-hero::before {
  content: '';
   position: absolute;
   top: 0;
  right  :      0;
   width: 300px;
    height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(80px, -80px);
}

.services-hero::after {
  content: '';
   position: absolute;
    bottom: 0;
 left: 0;
   width: 250px;
   height: 250px;
  background: rgba(255, 255, 255, 0.08);
   border-radius: 50%;
  transform: translate(-80px, 80px);
}

.services-hero-content {
   position: relative;
    z-index: 2;
       max-width: 800px;
}

.services-hero h1 {
   font-size: 3rem;

	  font-weight: 800;

	  margin-bottom  :  1.5rem;

	   line-height   :       1.2;
}

.services-hero p {
 font-size: 1.2rem;
   opacity: 0.95;
    font-weight: 300;
}

.services-intro {
  padding: 60px 20px;
   background: white;
}

.intro-container {
    max-width: 1200px;
   margin: 0 auto;
}

.intro-desc    {
	font-size: 1.1rem;
  color: var(--gray-text);
	line-height :1.8;
  margin-top: 1.5rem;
}

.services-detailed {
    padding: 80px 20px;
   max-width: 1200px;
	 margin: 0 auto;
   background    :  white;
}

.service-block {
    display: grid;
    grid-template-columns    :   1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom    :   5rem;
}

.service-block-alt {
  grid-template-columns: 1fr 1fr;
   direction     :        rtl;
}

.service-block-alt > * {


    direction: ltr;

}

.service-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.service-text h2 {
     color: var(--primary-color);
  margin-bottom: 1rem;
	font-size: 2rem;
	}

.service-text p {
  color: var(--gray-text);

	    line-height   :    1.8;

	    margin-bottom    :  1.5rem;

	  font-size: 1.05rem;
}

.service-subtitle {
  color: var(--dark-text);
       font-size: 1.2rem;
     font-weight: 600;
      margin-top: 2rem;
      margin-bottom: 1rem;
}

.service-features {
	   list-style: none;
  margin-bottom: 2rem;

}



.service-features li {
   padding: 0.8rem 0;
	   padding-left: 2rem;
	    position: relative;
	  color: var(--gray-text);
	  line-height   :    1.6;
}

.service-features li::before {
  content: '';
    position: absolute;
	 left: 0;
   top: 50%;
  transform: translateY(-50%);
          width: 8px;
    height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.service-detail {
  background: var(--light-bg);

	    padding  :       1.5rem;

	     border-radius    :       8px;

	  color: var(--gray-text);

		font-size: 0.95rem;

	  line-height     :    1.7;

	    margin-bottom: 1.5rem;

	  border-left: 4px solid var(--accent-color);
}

.service-price {
  font-size: 1.3rem;
   font-weight: 700;
  color: var(--primary-color);
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(30, 58, 138, 0.05));
   border-radius: 8px;
  text-align: center;
}

.services-comparison {
  background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);
  padding: 80px 20px;
}

.services-comparison h2 {
    text-align: center;
         margin-bottom: 3rem;
}

.comparison-table {
		max-width: 1200px;
    margin: 0 auto;
   overflow-x: auto;
   background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

table {
   width    :        100%;
	border-collapse: collapse;
}

table thead {

	  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;}

table th {
    padding: 1.5rem;
        text-align: left;
    font-weight: 600;
   border: none;
}

table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--gray-text);}

table tbody tr:hover {
  background-color: var(--light-bg);
}

table tbody tr:last-child td {
   border-bottom: none;
}  

table td:first-child {


  font-weight: 600;
  color: var(--dark-text);
  background-color: rgba(248, 250, 252, 0.5); 



}

table .yes {
  color: var(--primary-color);
   font-weight: 700;

}

table .no {
    color: #cbd5e1; 

}

table .partial {
  color: var(--accent-color);
    font-weight: 600;
}

table .price {
  color: var(--primary-color);
  font-weight: 600;
}

.services-faq


{
  background: white;
    padding: 80px 20px;
}

.services-faq h2 {
 text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
  max-width: 900px;
    margin     : 0 auto;
}

.faq-item {
   margin-bottom: 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
}

.faq-question {
    width     :100%;
    padding: 1.5rem;
    background: white;
   border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
  justify-content     :  space-between;
    align-items: center;
   font-size  :        1.1rem;
   font-weight: 600;
  color: var(--dark-text);
     transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--light-bg); 
  color: var(--primary-color);
}

.faq-icon {
	font-size: 1.5rem;
  color: var(--accent-color);
    transition :     transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
   max-height: 0;
   overflow: hidden;
  background: var(--light-bg);
    transition: all 0.3s ease;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
	 padding: 1.5rem;}

.faq-answer {
  color: var(--gray-text);
   line-height: 1.8;
}

.services-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
   text-align: center;
    padding: 80px 20px;
}


.services-cta h2  {
  color: white;
  margin-bottom: 1.5rem;
   font-size: 2.5rem;
}

.services-cta p {
   font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
   margin-right: auto;
}

.cta-button-services {
  display: inline-block; 
  background-color: var(--accent-color); 
  color: var(--dark-text); 
  padding: 15px 45px; 
   border-radius: 50px; 
   text-decoration: none; 
    font-weight:  600; 
  font-size: 1.05rem; 
	transition: all 0.3s ease; 
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-button-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
   background-color: #fbbf24;
}

.thankyou-hero {

  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	  color: white;
	    padding: 100px 20px;
	  min-height: 100vh;
	       display: flex;
		 align-items: center;
	   justify-content    :center;
	  position: relative;
	    overflow: hidden;
     }

.thankyou-hero::before {
  content: '';
    position: absolute;
   top: 0;
   right: 0;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
               border-radius  :     50%;
  transform: translate(100px, -100px);
}

.thankyou-hero::after {
  content: '';
  position: absolute;
         bottom: 0;
   left: 0;
   width: 300px;
    height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-100px, 100px);
}

.thankyou-container {
    position: relative;
    z-index: 2;
   max-width: 800px;
	margin: 0 auto;
  text-align   :  center;
}

.success-icon {
    width: 100px;
    height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid white;
   border-radius: 50%;
   display: flex;
   align-items    :        center;
  justify-content: center;
               font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-hero h1 {
   font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight  :        800;
}

.success-message {
   font-size: 1.3rem;
   margin-bottom: 3rem;
    opacity: 0.95;
}

.thankyou-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 3rem;
                    margin-bottom: 3rem;
}

.info-box h2,
.next-steps h2     {

	   font-size: 1.5rem;
       margin-bottom: 1.5rem;
       color: white;


}

.info-list {
   list-style    :        none;
    text-align: left;
}

.info-list li {
    padding: 0.8rem 0; 
	   padding-left  :      2rem; 
	    position: relative; 
	   line-height: 1.7;
}

.info-list li::before {
  content: '✓';
  position: absolute;
    left: 0;
  font-weight: bold;
     font-size    :  1.2rem;
}

.next-steps {
  margin-top: 2rem;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.next-steps p {
	margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.steps-grid {
  display :        grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
   margin-bottom: 2rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
    padding :   1.5rem;
  border-radius    :  8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.step-number {
    width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
   border-radius: 50%;
	display  :  flex;
	align-items: center;
   justify-content: center;
      font-size: 1.5rem;
  font-weight: bold;
   margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
   margin-bottom: 0.8rem;
   color     :     white;
}

.step-card p {
    font-size: 0.95rem;
   margin-bottom: 1rem;
    opacity: 0.9;
}

.step-link    {
   display    :     inline-block;
   background: white;
    color: #10b981;
   padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
     font-weight: 600;
         font-size: 0.9rem;
	transition: all 0.3s ease;
}

.step-link:hover {
   background     :        #f0fdf4;
  transform: translateY(-2px);
}

.guarantee-box {
  background: rgba(255, 255, 255, 0.05);
   padding: 1.5rem;
        border-radius: 8px;
   border-left: 4px solid white;
  margin-top     :  1.5rem;
}

.guarantee-box h3 {
  color: white;
  margin-bottom:     0.8rem;
}

.guarantee-box p {
  font-size: 0.95rem;
    opacity: 0.9;
}  

.back-navigation {


	margin-top: 2rem;
     }

.back-button {
    display   :  inline-block;
    background: white;
    color: #10b981;
   padding: 12px 35px;
    border-radius     :   50px;
	text-decoration: none;
      font-weight :    600;
    font-size: 1rem;
    transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.back-button:hover {
    background: #f0fdf4;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-block,
    .service-block-alt {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-block-alt {
        direction: ltr;
    }

    .services-detailed {
        padding: 60px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .success-message {
        font-size: 1.1rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 1rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .services-comparison h2,
    .services-faq h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 60px 15px;
        min-height: 350px;
    }

    .services-hero h1 {
        font-size: 1.6rem;
    }

    .service-detail {
        padding: 1rem;
    }

    .steps-grid {
        gap: 1rem;
    }

    .step-card {
        padding: 1rem;
    }

    .thankyou-container {
        padding: 0 15px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    table {
        font-size: 0.8rem;
    }

    table th,
    table td {
        padding: 0.8rem;
    }

    .comparison-table {
        overflow-x: auto;
    }
}.policySection {
   padding: 80px 2rem;
  background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 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: var(--shadow-lg);
}

.policy-title {


    font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
   font-weight: 800;
  text-align  :        center;
	}

.policyContainer h2		{
   font-size: 1.8rem;

	  color: var(--primary-color);

		 margin-top: 2.5rem;

	  margin-bottom: 1.5rem;

	  font-weight  : 700;

	   padding-bottom: 1rem;

	  border-bottom: 3px solid var(--accent-color);

}

.policyContainer h2:first-of-type {
  margin-top: 0;
}

.policyContainer p  {
  color: var(--gray-text);
    margin-bottom: 1.5rem;
   line-height: 1.8;
    font-size: 1.05rem;
     }

.policyContainer strong {
  color: var(--dark-text);
    font-weight: 600;

}


.policyContainer p strong {
  color: var(--primary-color);
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
    }

    .policy-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policy-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}