*
{
      margin    :   0;
  padding: 0;
  box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
   background-color: #fafbfc;
}

.navigation-bar {
	  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;
  padding: 0 2rem;
    display: flex;
  justify-content: space-between;
	align-items: center;
}

.brand-logo {
       height: 74px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
   gap: 3rem;
}

.nav-link {
   color: #ffffff;
    text-decoration: none;
   font-weight: 500;
  transition: all 0.3s ease;
    position     :    relative;


}

.nav-link::after {

	  content: '';
  position: absolute;
    bottom: -5px;
   left: 0;
    width: 0;
    height: 2px;
   background: #00d4ff;
   transition  :width 0.3s ease;}

.nav-link:hover::after {
    width: 100%;
}

.mobile-burger {
    display: none;
    flex-direction: column;
    background: none;
  border: none;
  cursor: pointer;
     gap:  5px;
}

.mobile-burger span {
   width: 25px;
  height: 3px;
    background    :       #ffffff;
               border-radius: 2px;
   transition: all 0.3s ease;
}

.mobile-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.mobile-burger.active span:nth-child(2) {
   opacity: 0;
}  

.mobile-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
  display: grid;
    grid-template-columns: 1fr 1fr;
  align-items: center;
   gap     :     4rem;
   max-width: 1200px;
    margin: 0 auto;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.hero-content h1 {
		font-size    :  3.5rem;
  line-height: 1.2;
   margin-bottom: 1.5rem;
   color: #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f4c75 100%);
   background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
	margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
	display: inline-block;
   padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
 color: #ffffff;
  text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.cta-button.large {
    padding  : 1.3rem 3rem;
  font-size: 1.1rem;
}

.hero-image {
   overflow: hidden;
   border-radius   :        15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
   width: 100%;
  height: auto;
  display: block;
   transition: transform 0.3s ease;
}

.hero-image:hover img   {
  transform: scale(1.05);
}

.features-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    max-width: 1200px;
  margin: 4rem auto;
   padding: 0 2rem;
}

.feature-card {
     background: #ffffff;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
    border-left: 4px solid #00d4ff;
}

.feature-card:hover		{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.feature-card h3  {
   color : #1a1a2e;
    font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
   color  :     #666;
    line-height: 1.8;
}

.coaching-section {
	display: grid;
  grid-template-columns: 1fr 1fr;
   align-items :        center;
    gap: 4rem;
        max-width: 1200px;
  margin: 4rem auto;
    padding: 0 2rem;
}

.coaching-content h2   {
          font-size: 2.5rem;
    color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.coaching-content p {
  font-size: 1.1rem;
        line-height    : 1.8;
  margin-bottom: 2rem;
  color: #555;
}

.coaching-benefits {
  list-style: none;
}

.coaching-benefits li {


   padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
    color:   #555;
  font-size: 1.05rem;
     }

.coaching-benefits li::before   {


  content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
   font-weight: bold;
   font-size: 1.5rem;

}

.coaching-image {
  border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.coaching-image img {
    width: 100%;
    height: auto;
    display: block;
}

.workshop-showcase {
    max-width: 1200px;
  margin   : 4rem auto;
    padding: 0 2rem;
}

.workshop-showcase h2


{
  font-size: 2.5rem;
  color  :     #1a1a2e;
    text-align: center;
   margin-bottom: 1rem;
}

.workshop-showcase > p {
   text-align: center;
    color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.workshops-container {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	  gap: 2.5rem;
}

.workshop-card {
    background: #ffffff;
               border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition     :   all 0.3s ease;
}

.workshop-card img {
    width: 100%;
	height: 250px;
   object-fit: cover;
    display: block;
}

.workshop-card h3 {

 color: #1a1a2e;
    padding: 1.5rem 1.5rem 0.5rem;
                    font-size: 1.5rem;
	}

.workshop-card p {
   color: #666;
   padding:  0.5rem 1.5rem 1.5rem;
  line-height: 1.8;
}


.workshop-card:hover


{
	  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);

} 

.transformation-stories {
   padding: 0 2rem;
    margin: 4rem auto;
  max-width :       1200px;
}


.transformation-stories h2 {
    font-size: 2.5rem;
   color: #1a1a2e;
    text-align: center;
   margin-bottom: 1rem;
}

.transformation-stories > p {
    text-align: center;
    color: #666;
	font-size  :1.1rem;
               margin-bottom: 3rem;
}

.stories-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
   padding   :2rem;
   border-radius: 12px;
   border: 1px solid #e0f0ff;
  transition :    all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);

	  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);

	  border-color: #00d4ff;
}

.story-content {
    font-size: 1rem;

	   color: #555;

	    line-height: 1.8;

	   margin-bottom: 1.5rem;

	  font-style: italic;
}

.story-author {
    font-size: 0.95rem;
  color: #1a1a2e;
    font-weight: 600;
  display: block;
}

.process-section {

	    max-width: 1200px;
  margin: 4rem auto;
   padding: 0 2rem;}

.process-section h2 {
      font-size: 2.5rem;
  color: #1a1a2e;
    text-align: center;
  margin-bottom: 3rem;
	}



.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap :     2rem;
}

.step {
    text-align: center;
   position: relative;
    padding: 2rem;
          background: #ffffff;
  border-radius   :        12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition     :  all 0.3s ease; 

}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.step-number {
    display: inline-flex;
  align-items    :center;
   justify-content: center;
    width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
      color: #ffffff;
   border-radius: 50%;
   font-size :    1.5rem;
   font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
   font-size    :    1.3rem;
   color: #1a1a2e;
   margin-bottom: 0.8rem;


}

.step p {
	    line-height: 1.6;
  color: #666;
    font-size: 0.95rem;
	}

.projection-section {
    display   :   grid;
    grid-template-columns: 1fr 1fr;
   align-items: center;
    gap: 4rem;
    max-width  : 1200px;
   margin: 4rem auto;
  padding: 0 2rem;
}

.projection-content h2 {
    font-size: 2.5rem;
	 color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.projection-content p {
  font-size: 1.05rem;
    color: #555;
  margin-bottom: 1.5rem;
  line-height  :       1.8;
}

.projection-image {
          border-radius: 15px;
    overflow  :      hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.projection-image img {


       width: 100%;
 height: auto;
  display: block;

}

.pricing-section {

	    max-width: 1200px;
  margin    : 4rem auto;
   padding: 0 2rem;
}

.pricing-section h2 {


    font-size: 2.5rem;
  color   :  #1a1a2e;
   text-align: center;
  margin-bottom: 1rem;
     }

.pricing-section > p {
  text-align: center;
       color: #666;
   font-size: 1.1rem;
    margin-bottom: 3rem;
}

.pricing-cards {

	      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;}

.price-card {
	background: #ffffff;
   padding :     2.5rem;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition:   all 0.3s ease;
    text-align: center;
}

.price-card.featured
	{
   border-color     :        #00d4ff;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.price-card h3 {
   font-size: 1.8rem;
    color: #1a1a2e;
  margin-bottom: 1rem; 

}



.price {
    display: block;
    font-size: 2.5rem;
    color    :       #00d4ff;
          font-weight: bold;
   margin-bottom    : 0.3rem;
}

.price-period {


   color: #999;
   font-size: 0.95rem;
    margin-bottom: 1.5rem;

}

.price-features {
   list-style: none;
   margin-bottom: 2rem;
  text-align: left;
}

.price-features li {
   padding: 0.7rem 0;
   color: #666;
   border-bottom: 1px solid #f0f0f0;
}

.price-features li:last-child  {
   border-bottom: none;
}

.price-btn {
    display: inline-block;
                    padding    :  0.8rem 2rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
   color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
   font-weight: 600;
    transition: all 0.3s ease;
  border: none;
   cursor: pointer;
}

.price-btn:hover {

	  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
  padding: 4rem 2rem;
   text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
  font-size  :       2.5rem;
       margin-bottom  :      1rem;
}

.cta-section p {
	   font-size: 1.1rem;
  margin-bottom: 2rem;
   max-width: 600px;
	margin-left: auto;
   margin-right: auto;
    line-height:  1.8;
     }

.contact-section {
   max-width: 700px;
    margin : 4rem auto;
  padding: 0 2rem;
}

.contact-section h2 {
   font-size: 2.5rem;
   color: #1a1a2e;
    text-align: center;
	 margin-bottom: 1rem;

}

.contact-section > p {
   text-align: center;
   color: #666;
  font-size: 1.05rem;
   margin-bottom: 2rem;
}

.contact-form {
  background: #ffffff;
    padding: 2.5rem;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
   margin-bottom: 1.5rem; 

}

.form-group label {
  display: block;
    margin-bottom: 0.5rem;
       color: #1a1a2e;
  font-weight: 600;
     font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
   border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
   font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
   border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.submit-btn {
    width: 100%;
     padding: 1rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #ffffff;
   border: none;
    border-radius: 8px;
          font-size     :  1.1rem;
    font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover  {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}  

.footer-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-container     {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 2rem; 

}

.footer-logo {
   height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;


}

.footer-links {
  display: flex;
  flex-direction: column;
   gap: 1rem;
}

.footer-links a {

	   color: #ffffff;
    text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {

	  color: #00d4ff;
  padding-left   :0.5rem;

}

.footer-contact p {
  line-height: 1.6;
   margin-bottom: 0.8rem;
    color: #ccc;
}

.footer-bottom {
  text-align: center;
    padding: 1.5rem 2rem;
     color: #999;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .mobile-burger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .coaching-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projection-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-card,
    .workshop-card,
    .story-card,
    .step {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-logo {
        height: 70px;
    }
}.services-hero {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 76, 117, 0.9) 100%), url('wireframes/financial_modeling_business_training.webp');
  background-size: cover;
    background-position: center;
    background-attachment: fixed;
                    color: #ffffff;
    padding: 6rem 2rem;
  text-align: center;
 min-height: 400px;
    display: flex;
   align-items: center;
	 justify-content: center;
}

.hero-services-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	}

.hero-services-content p {
  font-size: 1.2rem;
   max-width: 600px;
          margin: 0 auto;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.service-detail-grid {
     display: grid;
   grid-template-columns  :1fr;
	 gap: 3rem;
  max-width: 1100px;
   margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-card


{

	  background: #ffffff;
 border-radius :       12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 0;
	}

.service-detail-card:hover {
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
}

.service-icon-wrapper {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f4c75 100%);
   color: #ffffff;
   padding    :     3rem 2rem;
  display: flex;
    align-items: center;
   justify-content: center;
  min-height: 300px;
     }

.service-icon-wrapper h2 {
  font-size: 2rem;
   text-align: center;
   line-height: 1.3;
}

.service-detail-card img		{
   width: 100%;
   height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
  padding    :       2.5rem;
    display: flex;
  flex-direction: column;
    justify-content: flex-start;
}

.service-content p {
    color: #555;
               margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.service-content h3 {
   border-left   :       3px solid #00d4ff;
   font-size: 1.3rem;
  margin-top    :    1.5rem;
  margin-bottom: 0.8rem;
   padding-left: 1rem;
   color: #1a1a2e;
} 

.service-list {
   list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
  padding  :    0.5rem 0;
    padding-left  : 1.8rem;
   position: relative;
       color: #666;
  font-size: 0.9rem;
    line-height: 1.6;

}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
   color: #00d4ff;
    font-weight: bold;

}

.service-duration {
   margin-top: 1.5rem;
  padding: 1rem;
    background: #f0f8ff;
  border-left: 3px solid #00d4ff;
   border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
   color: #1a1a2e;
}

.service-comparison {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-comparison h2 {
                    font-size: 2.5rem;
   color: #1a1a2e;
                    text-align: center;
    margin-bottom: 2.5rem;
} 

.comparison-table {
  background: #ffffff;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.table-header {
   display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(135deg, #1a1a2e 0%, #0f4c75 100%);
   color: #ffffff;
  font-weight: 600;
  gap: 1px;
}

.table-row {
   display: grid;

  grid-template-columns: repeat(5, 1fr);

                    border-bottom: 1px solid #e0e0e0;

     gap: 1px;
}

.table-row:last-child {
   border-bottom  :none;
}

.table-cell {
  padding: 1.2rem;
      display: flex;
    align-items: center;
   font-size: 0.9rem;
      color  :       #555;
}

.table-header .table-cell {
         padding: 1.5rem 1.2rem;
	background: inherit;
    color: #ffffff;
}

.table-row:nth-child(even) {
  background  :#f9f9f9;
}

.table-row:hover {
    background: #f0f8ff;
}

.service-process {
  max-width: 1200px;
    margin: 4rem auto;
         padding: 0 2rem;
}

.service-process h2 {
   font-size     : 2.5rem;
   color: #1a1a2e;
    text-align: center;
   margin-bottom: 3rem;
}

.process-guide {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.guide-step {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    padding   :2rem;
     border-radius: 12px;
    border: 2px solid #e0f0ff;
  transition: all 0.3s ease;
}

.guide-step:hover {
  border-color: #00d4ff;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.15);
  transform: translateY(-5px);
}

.guide-step h3
	{
  color: #1a1a2e;
   font-size: 1.3rem;
   margin-bottom: 1rem;
}

.guide-step p {
  color: #666;
    line-height: 1.6;
   font-size: 0.95rem;
}

.faq-section {
  padding: 0 2rem;
   max-width: 900px;
   margin: 4rem auto;
}

.faq-section h2 {
  font-size   :      2.5rem;
  color: #1a1a2e;
   text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
               display: grid;
   grid-template-columns: 1fr;
    gap: 1rem;
}

.faq-item   {
	    background: #ffffff;

	    border-radius: 12px;

	   overflow: hidden;

	  border: 2px solid #e0e0e0;

	  transition: all 0.3s ease;
     }

.faq-item:hover 
 {

		 border-color: #00d4ff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);

}

.faq-question {
   cursor: pointer;
    user-select: none;
   align-items: center;
	font-size: 1.1rem;
	margin: 0;
   display: flex;
                    justify-content     :      space-between;
   color: #1a1a2e;
      padding: 1.5rem;
}

.faq-question::after {
  content: '▼';
		 color: #00d4ff;
    transition: transform 0.3s ease;
   font-size: 0.8rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
   color   :  #666;
  line-height: 1.8;
   max-height: 500px;
  overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.services-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 4rem 2rem;
   text-align: center;
   margin: 4rem 0;
}

.services-cta h2 {
    font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
   margin-left: auto;
  margin-right: auto;
  line-height: 1.8;

}

.thank-you-section {
  max-width: 800px;
   margin: 4rem auto;
	padding     :      0 2rem;
}

.thank-you-container {
    background: #ffffff;
    border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
   margin-bottom: 2rem;
}

.success-icon svg {
               width: 120px;
   height: 120px;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-section h1 {
  font-size: 2.8rem;
    color: #1a1a2e;
   margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.3rem;
   color: #555;
   margin-bottom  :   2.5rem;
}

.confirmation-details{

	   background   :       #f0f8ff;
    padding: 2rem;
   border-radius: 12px;
   border-left: 4px solid #00d4ff;
    margin   :   2rem 0;
  text-align: left;
}

.confirmation-details h2 {
    color: #1a1a2e;
   font-size: 1.5rem;
   margin-bottom: 1.5rem;
    text-align  :  center;
}

.steps-list {
   list-style :   decimal;
   margin-left: 2rem;
   color: #555;
}



.steps-list li {
  margin-bottom:        0.8rem;
   line-height: 1.6;
}

.contact-note {


   margin-top: 1.5rem;
  padding: 1rem;
  background: #fffef0;
	 border-radius: 8px;
	border-left: 3px solid #f39c12;
  color: #1a1a2e;
  text-align: left;

}

.confirmation-message

{
	background: #ffffff;
     padding: 2rem;
   border-radius   : 12px;
   margin: 2rem 0;
    text-align: left;
    border: 2px solid #e0f0ff;
}

.confirmation-message h3 {
    color: #1a1a2e;
   font-size: 1.3rem;
  margin-bottom: 1rem;
}

.confirmation-message p {
   color: #666;
    line-height   :   1.8;
   margin-bottom :      1rem;
}

.quick-links {
  margin: 2.5rem 0;
   text-align: center; 

}

.quick-links h3 {
    font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.quick-link {
 display: inline-block;
     margin: 0 1rem;
        padding: 0.8rem 1.8rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #ffffff;
    text-decoration: none;
   border-radius: 50px;
    font-weight: 600;
   transition: all 0.3s ease;
}

.quick-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
	}

.faq-quick  
  {
   background :#f9f9f9;
  padding    :        2rem;
    border-radius: 12px;
  margin: 2rem 0;
         text-align: left;
}

.faq-quick h3 {
  color: #1a1a2e;
        font-size: 1.3rem;
  margin-bottom: 1.5rem;
   text-align: center;
}

.faq-item-quick  {
   margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item-quick:last-child {
    border-bottom: none;
    margin-bottom: 0;
   padding-bottom: 0;
}

.faq-item-quick p
{
  margin  :  0.5rem 0;
  color: #666;
   line-height: 1.6;
  font-size: 0.95rem;
}

.faq-item-quick p:first-child {
   color: #1a1a2e;
   font-weight: 600;
  margin-bottom: 0.5rem;
}

.social-proof {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    padding: 2rem;
    border-radius: 12px;
  border: 2px solid #e0f0ff;
  margin: 2rem 0;
  text-align: left;
}

.social-proof h3 {
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-size: 1.3rem;
   text-align: center;
}

.proof-list {
  list-style: none;
        color: #555;
}

.proof-list li {
  padding: 0.6rem 0;
  color  :    #1a1a2e;
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-section {
   max-width: 1200px;
  margin: 4rem auto;
   padding: 0 2rem; 

}

.trust-section h2 {
     font-size     : 2.5rem;
    color: #1a1a2e;
  text-align: center;
  margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   	gap: 2rem;
}

.trust-card
{


  background: #ffffff;
  padding: 2rem;
               border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   border-top: 4px solid #00d4ff;
	 transition: all 0.3s ease; 

	}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.trust-card h3 {

	    color: #1a1a2e;
         font-size: 1.3rem;
               margin-bottom: 1rem;
     }

.trust-card p {
    color:        #666;
	   line-height     :     1.8;
	   font-size: 0.95rem;
	
}



.additional-resources {
   max-width: 1200px;
  margin: 4rem auto;
   padding: 0 2rem;
}

.additional-resources h2{
   font-size    : 2.5rem;
   color: #1a1a2e;
  text-align: center;
  margin-bottom: 3rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
}

.resource-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
	padding: 2rem;
   border-radius: 12px;
               border: 2px solid #e0f0ff;
    transition: all 0.3s ease;
}

.resource-card:hover {
       border-color: #00d4ff;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.15);
  transform: translateY(-5px);
}

.resource-card h3
{
  color: #1a1a2e;
  font-size: 1.2rem;
    margin-bottom: 1rem;
}



.resource-card p {
	 color: #666;
   line-height:  1.8;
    margin-bottom     :   1.5rem;
	 font-size: 0.95rem;
}

.resource-link {
         display: inline-block;
   color: #00d4ff;
     text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
 border-bottom: 2px solid transparent;
}

.resource-link:hover {
  border-bottom-color: #00d4ff;
}@media (max-width: 1024px) {
    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-icon-wrapper {
        min-height: 250px;
    }

    .service-icon-wrapper h2 {
        font-size: 1.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .table-cell {
        padding: 0.8rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 2rem;
        min-height: 300px;
    }

    .hero-services-content h1 {
        font-size: 2rem;
    }

    .hero-services-content p {
        font-size: 1rem;
    }

    .thank-you-container {
        padding: 2rem;
    }

    .thank-you-section h1 {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1.1rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .confirmation-details {
        padding: 1.5rem;
    }

    .confirmation-message {
        padding: 1.5rem;
    }

    .quick-link {
        display: block;
        margin: 0.8rem 0;
    }

    .success-icon svg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 2rem;
        min-height: 250px;
    }

    .hero-services-content h1 {
        font-size: 1.6rem;
    }

    .service-detail-card {
        margin: 0 -2rem;
        border-radius: 0;
    }

    .service-icon-wrapper {
        padding: 2rem;
        min-height: 200px;
    }

    .service-icon-wrapper h2 {
        font-size: 1.2rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .thank-you-container {
        padding: 1.5rem;
        border-radius: 0;
    }

    .thank-you-section h1 {
        font-size: 1.5rem;
    }

    .success-icon svg {
        width: 80px;
        height: 80px;
    }

    .service-comparison,
    .service-process,
    .faq-section,
    .services-cta,
    .trust-section,
    .additional-resources {
        padding: 0;
    }
}.policy-section  {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #fafbfc 0%, #f0f8ff 100%);
   min-height: 600px;
}

.policy-container {
  max-width: 900px;
    margin: 0 auto;
   text-align: left;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
  font-size: 3rem;
	    color: #1a1a2e;
	   margin-bottom: 2rem;
		 font-weight: 700;
	  border-bottom:       3px solid #00d4ff;
	    padding-bottom: 1rem;
}

.policy-container h2 {
    font-size: 1.8rem;
  color: #1a1a2e;
   margin-top: 2.5rem;
	 margin-bottom: 1.2rem;
    font-weight: 600;
  position    :    relative;
  padding-left: 1rem;
	
}

.policy-container h2::before {
  font-size: 1.5rem;
  content: '▪';
    color: #00d4ff;
  left: 0;
  position: absolute;
}

.policy-container p {
	color: #555;
   margin-bottom: 1.3rem;
	 line-height: 1.9;
     font-size: 1rem;
}

.policy-container strong {
   color: #1a1a2e;
               font-weight: 600;


}

.last-updated {
  margin-top  :3rem;
   padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
  font-size: 0.95rem;
    color: #999;
  text-align: center;
}@media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-container h1 {
        font-size: 2.5rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .policy-container h2::before {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container {
        padding: 1.5rem;
        margin: 0;
        border-radius: 0;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .last-updated {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .policy-container h2::before {
        font-size: 1rem;
    }
}