*	{
   margin: 0;
   padding: 0;
	box-sizing: border-box;
}

html, body {
    width: 100%;
	height: 100%;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

img {
  max-width: 100%;
	height: auto;
   display: block;
}

a
{
  text-decoration: none;
    color: inherit;
}

button {
   cursor: pointer;
    border: none;
   background: none;
   font-family   :inherit;
}

input, textarea, select {
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
	  font-weight: 600;
                    line-height: 1.2;
  margin-bottom: 1rem;
     }

h1 {
 font-size: 3.5rem;
}

h2 {
     font-size: 2.8rem;
    color: #1a252f;
}

h3 {
   font-size: 1.8rem;
    color: #2c3e50; 
	
}

p {
 margin-bottom: 1.5rem;
    line-height: 1.8; 

}

ul, ol 
 {
  list-style     :  none;
}

.navbar {
  background-color: #f8f9fa;
   padding: 1.2rem 0;
    position: sticky;
    top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container		{
   max-width: 1200px;
   margin : 0 auto;
	display: flex;
   justify-content: space-between;
    align-items: center;
   padding: 0 2rem;
}

.nav-logo img {
    height   :  94px;
    width: auto;
}



.burger-menu {


	display: none;
       flex-direction: column;
   gap: 0.5rem;
	padding: 0.5rem;
	
}

.burger-line		{
    width: 28px;
   height     :     3px;
  background-color: #2c3e50;
   border-radius: 2px;
	transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
         list-style: none;
    gap: 3rem;
}

.nav-link {
    color     :    #2c3e50;
	font-weight: 500;
    padding: 0.5rem 1rem;
	 border-radius: 4px;
  transition: all 0.3s ease;
   position: relative;
}

.nav-link:hover {
   color: #5a67d8;
  background-color: rgba(90, 103, 216, 0.1);
}

.nav-link::after {

		width: 0;
    left: 0;
   position: absolute;
    background-color: #5a67d8;
    transition: width 0.3s ease;
   bottom    :-2px;
  content: '';
  height: 2px;
     }

.nav-link:hover::after {
  width: 100%;
}

.hero {
   display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 4rem;
  align-items   :       center;
   max-width: 1200px;
       margin: 0 auto;
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 600px;
}

.hero-content {

	   padding-right: 2rem;
}

.hero-title {
    font-size    :3.5rem;
   color:#1a252f;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle {
          font-size: 1.1rem;
  color: #555;
    margin-bottom: 2rem;
   line-height: 1.8;
}

.hero-cta {
	display: inline-block;
  background: linear-gradient(135deg, #5a67d8 0%, #6c5ce7 100%);
   color: white;
   padding: 1rem 2.5rem;
  border-radius:       50px;
    font-weight: 600;
	transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(90, 103, 216, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(90, 103, 216, 0.4);
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-img {
    width: 100%;
  height: auto;
  display: block;
   object-fit: cover;
}

.why-us {
  max-width: 1200px;
  margin: 0 auto;
   padding: 5rem 2rem;
}

.section-header {


    text-align: center;
    margin-bottom: 4rem;


}

.section-header h2 {
   margin-bottom: 1rem;
  font-size: 2.8rem;
}

.section-header p		{
  font-size   :    1.1rem;
   color: #666;
    max-width: 600px;
	 margin  : 0 auto;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: #fafbfc;
                    padding: 2.5rem;
        border-radius: 12px;
  transition: all 0.3s ease;
	border-left: 4px solid #5a67d8;
   position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(90, 103, 216, 0.15);
    background: #f0f3ff;
}

.feature-number {
    font-size: 3rem;
   font-weight: 700;
  color: #e8ebf0;
	margin-bottom: 1rem;
   position: absolute;
    top: 2rem;
  right: 2rem;
}

.feature-card h3   {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a252f;
} 

.feature-card p {
    color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.coaching-methods {
   max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.method-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.method-row.reverse {
    direction: rtl;
}

.method-row.reverse > * {
   direction: ltr;
}

.method-image {
  overflow: hidden;
    border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.method-img {
	width: 100%;
  height: auto;
	display: block;
   transition: transform 0.4s ease;
}

.method-image:hover .method-img {
  transform: scale(1.05);
}

.method-content h2 {
	margin-bottom: 1.5rem;


}

.method-content p {
  color: #555;
  margin-bottom    :        1.5rem;
  font-size: 1rem;
}

.method-link {
  display: inline-block;
   color: #5a67d8;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
    border: 2px solid #5a67d8;
         border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 1rem; 
	
}  

.method-link:hover {
  background-color: #5a67d8;
	 color   :      white;
}

.webinar-intro {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 4rem 2rem;
    text-align: center;
}

.webinar-intro h2 {
    color: white;
	  margin-bottom    :   0.5rem;
}

.webinar-subtitle {


  font-size: 1.1rem;
  margin-bottom: 3rem;
   opacity: 0.95;

}

.webinar-cards {
  max-width: 1200px;
    margin    :       0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.webinar-card {


  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
   padding: 2rem;
   border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
     }

.webinar-card:hover   {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.webinar-card h3 {
    color: white;
  margin-bottom: 0.5rem;
}

.webinar-card p {
    margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.webinar-desc {
   font-size: 0.95rem;
       line-height: 1.6;
}

.decision-making  
  {


     max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem; 

	}

.wisdom-section {
   background-color: #f8f9fa;
    padding   :      5rem 2rem;
}

.section-intro {
	 text-align   : center;
    max-width: 700px;
   margin     :        0 auto 4rem;
  font-size: 1.1rem;
    color   :#666;
}

.wisdom-content {
                    max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.wisdom-item 
 {
   background: white;
   padding: 2.5rem;
	 border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.wisdom-item h3 {
  color: #5a67d8; 
	    margin-bottom: 1rem;
	
}

.wisdom-item p {
  color: #555;
	font-size: 0.95rem;
}

.mindfulness-section {
	    max-width: 1200px;
  margin:     0 auto;
   padding: 5rem 2rem;

}

.benefit-list {

    list-style: none;
    padding: 1.5rem 0;


}

.benefit-list li {
   padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
  color: #555;
}

.benefit-list li::before {


  content: '✓';
   position: absolute;
  left: 0;
  color: #5a67d8;
    font-weight: bold;
   font-size: 1.2rem;
}

.leadership-vision {

	  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding   : 5rem 2rem;
}

.leadership-vision h2 {
  text-align: center;
   margin-bottom: 1rem;


}

.leadership-vision .section-intro {
  margin-bottom:4rem;
}

.vision-grid {
    max-width: 1200px;
   margin: 0 auto;
    display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vision-card {
   background: white;
      padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #5a67d8;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(90, 103, 216, 0.15);
}

.vision-card h3 {
     color: #1a252f;
   margin-bottom: 1rem;}

.vision-card p {


   color: #666;
    font-size  :     0.95rem;}

.testimonials {
       max-width: 1200px;
	  margin: 0 auto;
	   padding: 5rem 2rem;
	    text-align: center;}

.testimonials h2
	{

  margin-bottom: 3rem;}

.testimonials-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}  

.testimonial-item


{
  background: #f8f9fa;
   padding: 2rem;
   border-radius   :       12px;
	border-left: 4px solid #5a67d8;
  text-align: left;
}



.testimonial-text {
  font-style    :       italic;
  color: #555;
    margin-bottom: 1.5rem;
   font-size: 0.95rem;
  line-height: 1.8;
}

.testimonial-author     {
  color: #5a67d8;
   font-weight: 600;
   margin: 0;
}

.final-cta {
  background: linear-gradient(135deg, #5a67d8 0%, #6c5ce7 100%);
    color: white;
   padding: 5rem 2rem;
  text-align: center;
}

.final-cta h2 {
    color: white;
       margin-bottom: 1rem;
}

.final-cta p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
   max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}  

.cta-button-large {
  display    :   inline-block;
    background: white;
  color:      #5a67d8;
   padding :    1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
         font-size   : 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-section {
   max-width   : 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.contact-section h2		{
                    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
  font-size: 1.05rem;
  color: #666;
        text-align:  center;
    margin-bottom: 3rem;
}

.contact-form {
    background: #fafbfc;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
   margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
   padding    :      1rem;
 border: 2px solid #e8ebf0;
   border-radius: 8px;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
   outline: none; 
	  border-color: #5a67d8; 
	  box-shadow: 0 0 0 3px rgba(90, 103, 216, 0.1);
}

.contact-form input::placeholder {
   color: #999;
}

.form-submit {
    width   :100%;
   padding :       1.2rem;
  background: linear-gradient(135deg, #5a67d8 0%, #6c5ce7 100%);
  color: white;
	 border: none;
  border-radius: 8px;
   font-weight: 600;
  font-size: 1rem;
   cursor: pointer;
  transition: all 0.3s ease; 

}

.form-submit:hover {

	  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(90, 103, 216, 0.3);

}

.footer {
    background-color   :    #1a252f;
  color: white;
  padding: 4rem 2rem 2rem;
}  

.footer-container {
  grid-template-columns: 1fr 1fr 1fr;
   margin-bottom: 3rem;
   max-width: 1200px;
    gap: 3rem;
    margin: 0 auto;
	display: grid;
} 

.footer-logo-img {
    height:        136px;
    width: auto;
  filter: brightness(0) invert(1);
    margin-bottom :  1rem; 

}

.footer-contact h3,
.footer-nav h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.address {
    margin-bottom: 1rem;
    color: #b8c5d0;
   font-size: 0.95rem;
}

.phone {
   color :        #b8c5d0;
    font-size: 0.95rem;
    margin: 0;
}

.footer-nav ul {
         list-style: none;
}

.footer-nav li {
   margin-bottom: 0.8rem;
}

.footer-nav a {
  color: #b8c5d0;
   transition: color 0.3s ease;
} 

.footer-nav a:hover {
	color: #5a67d8;
}

.footer-bottom {
	 text-align: center;
  padding-top: 2rem;
   border-top: 1px solid #304050;
   color: #b8c5d0;
  font-size: 0.9rem;}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #f8f9fa;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding-right: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .features-grid,
    .webinar-cards,
    .vision-grid,
    .testimonials-grid,
    .wisdom-content {
        grid-template-columns: 1fr;
    }

    .method-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .method-row.reverse {
        direction: ltr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .webinar-intro {
        padding: 3rem 1.5rem;
    }

    .why-us,
    .coaching-methods,
    .decision-making,
    .mindfulness-section,
    .testimonials {
        padding: 3rem 1.5rem;
    }

    .wisdom-section {
        padding: 3rem 1.5rem;
    }

    .leadership-vision {
        padding: 3rem 1.5rem;
    }

    .final-cta {
        padding: 3rem 1.5rem;
    }
}.services-hero
{
  background: linear-gradient(135deg, #5a67d8 0%, #6c5ce7 100%);
   color:       white;
  padding: 4rem 2rem;
    text-align: center;
   min-height: 400px;
   display     :   flex;
  align-items: center;
  justify-content: center;
}

.services-hero-content h1 {
   color: white;
    font-size: 3.5rem;
  margin-bottom: 1.5rem;
	line-height: 1.2;
}

.services-hero-content p {
	font-size: 1.2rem;
   opacity:  0.95;
  max-width: 700px;
   margin: 0 auto;
}

.services-overview {
	 max-width: 1200px;
   margin: 0 auto;
  padding: 5rem 2rem;
}

.services-overview h2 {
    text-align: center;
   margin-bottom: 1.5rem;
}

.overview-intro {
    text-align: center;
  color:  #666;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.services-tabs {
    display: flex;
    gap: 1rem;
   margin-bottom   :       3rem;
  flex-wrap :    wrap;
  justify-content: center;
}

.tab-btn {
  padding  :        0.85rem 2rem;
    border: 2px solid #e8ebf0;
  background-color:      white;
      color: #2c3e50;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #5a67d8;
    color: #5a67d8;
}

.tab-btn.active {
   background-color: #5a67d8;
    color: white;
	border-color: #5a67d8;
}

.tab-content {

	   display    : none;
  animation: fadeIn 0.3s ease;}

.tab-content.active {
   display: block;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.services-container {
   max-width: 1200px;
}

.service-detail {
    display    :    grid;
   grid-template-columns   :        1fr 1fr;
  gap: 3rem;
    align-items: center;
               background: #f8f9fa;
	padding: 3rem;
   border-radius: 12px;
}

.detail-image {
	overflow: hidden;
   border-radius: 12px;
}

.detail-img


{
  width: 100%;
    height: auto;
   display: block;
    transition: transform 0.4s ease;
	
}

.detail-image:hover .detail-img {
  transform: scale(1.05);
}

.detail-content h3 {
    font-size: 2rem;
         margin-bottom: 1.5rem;
  color: #1a252f;
}

.detail-content p {
    color: #555;
  margin-bottom: 1.5rem;
}

.detail-content h4 {
	color    :    #5a67d8;
   font-size: 1.2rem;
    margin-bottom: 1rem;
   margin-top: 1.5rem;
}

.service-list {
                    list-style: none;
          margin-bottom: 2rem;
}

.service-list li {
   padding: 0.7rem 0;
  padding-left: 1.8rem;
  position: relative;
    color: #555;
   line-height: 1.6;
}

.service-list li::before {
  content: '✓';
	    position: absolute;
	  left: 0;
	  color   :   #5a67d8;
	   font-weight: bold;
	   font-size: 1.1rem;
}

.pricing {
    background: white;
    padding: 1.2rem;
	border-radius: 8px;
   color: #5a67d8;
  font-weight: 700;
   font-size: 1.1rem;
}

.service-packages	{
   background-color: #f8f9fa;
    padding: 5rem 2rem;

}

.service-packages h2 
 {
  text-align: center;
   margin-bottom: 1rem;
}

.packages-intro {
  text-align: center;
   color: #666;
   font-size: 1.05rem;
   margin-bottom: 3rem;
}

.packages-grid {
  max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap  :2rem;
}

.package-card {
   background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   transition  : all 0.3s ease;
   position: relative;
  display :   flex;
   flex-direction: column;

}  

.package-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(90, 103, 216, 0.2);}

.package-card.featured {
   border: 3px solid #5a67d8;
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
    top: 0;
    right: 0;
  background: #5a67d8;
  color: white;
         padding:    0.5rem 1.2rem;
   font-weight: 600;
  font-size: 0.85rem;
}

.package-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h3  {
  font-size   :  1.8rem;
       color : white;
	 margin-bottom: 0.5rem;
}

.package-price {
   font-size    :    2.5rem; 
	    font-weight: 700; 
	   margin-bottom: 0.3rem;
}

.package-period {
    font-size: 0.95rem;
  opacity: 0.9;
        margin: 0;
}

.package-body {
    padding: 2rem;
   flex-grow: 1;
}

.package-list{
   list-style: none;
   margin-bottom: 2rem;
}

.package-list li {
  position:       relative;
    font-size: 0.95rem;
   color: #555;
   padding-left   :     1.8rem;
  padding: 0.7rem 0;
}

.package-list li::before {
  content: '✓';
    position: absolute;
    left: 0;
  color: #5a67d8;
  font-weight    :       bold;
} 

.package-btn {

	   display: block;
   text-align: center;
  background: #e8ebf0;
    color: #5a67d8;
   padding: 1rem;
   border-radius  :       8px;
   font-weight: 600;
  transition: all 0.3s ease;
    margin-top: auto;
    cursor: pointer;

}

.package-btn:hover {
  background: #5a67d8;
  color: white;
}

.package-btn.active {
  background: #5a67d8;
    color: white; 
	
}

.service-comparison {


    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;}

.service-comparison h2 {
   text-align: center;
	margin-bottom: 3rem;
}

.comparison-table {
  overflow-x: auto;
    background: white;
    border-radius:        12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

table {
   width: 100%;
    border-collapse: collapse;
}

thead {
  background: linear-gradient(135deg, #5a67d8 0%, #6c5ce7 100%);
    color     :    white;
}

th {
  padding: 1.5rem;
   text-align: left;
  font-weight: 600;
}

td     {
    padding: 1.2rem 1.5rem;
   border-bottom: 1px solid #e8ebf0;
    color: #555;
}

tbody tr:hover {
  background-color: #f8f9fa;
}

tbody tr:last-child td {
  border-bottom: none;
}

.process-section {
    background-color    : #f8f9fa;
  padding: 5rem 2rem;
}

.process-section h2 {
  text-align: center;
	margin-bottom: 3rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 2rem;
}

.step
	{

   background: white;
   padding: 2rem;
	 border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
          position: relative;


	}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(90, 103, 216, 0.15);
}

.step-number {
    font-size: 3rem;
   font-weight: 700;
  color: #e8ebf0;
   margin-bottom: 1rem;
}

.step h3 {
   color: #1a252f;
   margin-bottom   :  1rem;
   font-size: 1.3rem;
}

.step p {
    color: #666;
  font-size: 0.95rem;
    line-height: 1.6;
}



.faq-section {
    max-width: 900px;
   margin  :  0 auto;
   padding:        5rem 2rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
   display: flex;
  flex-direction   :     column;
 gap: 1rem;
}

.faq-item {
	border: 2px solid #e8ebf0; 
    border-radius :        12px; 
    overflow: hidden; 
    transition: all 0.3s ease;
}

.faq-item.active {
   border-color: #5a67d8;
}

.faq-question	{
   display: flex;
    justify-content  :   space-between;
    align-items     :  center;
       padding: 1.5rem;
    background: #fafbfc;
   cursor: pointer;
   transition: all 0.3s ease;
}

.faq-item.active .faq-question {
   background: #f0f3ff;
}

.faq-question h3 {
   margin     :       0;
  font-size: 1.1rem;
   color: #1a252f;
   text-align: left;
}

.faq-toggle {
    font-size    :        1.5rem;
   color: #5a67d8;
   font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer 
 {
    display: none;

  padding  :       1.5rem;

  background: white;

   color: #555;

   line-height: 1.7;
}

.faq-item.active .faq-answer {
   display: block;
}

.cta-services

{
  background: linear-gradient(135deg, #5a67d8 0%, #6c5ce7 100%);
  color: white;
   padding: 4rem 2rem;
   text-align: center;
}

.cta-services h2 {


  margin-bottom: 1rem;
    color :        white;
     }

.cta-services p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
   max-width: 600px;
  margin-left: auto;
    margin-right: auto;
}

.cta-services-btn {
   display: inline-block;
    background     :      white;
   color: #5a67d8;
    padding: 1.2rem 3rem;
   border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-services-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.thankyou-section {
    max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
   text-align    :  center;
}

.thankyou-container {
   background: #f8f9fa;
    padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thankyou-icon {
  margin-bottom   :  2rem;
}

.thankyou-icon svg     {
  width: 120px;
   height: 120px;
    animation: scaleInBounce 0.6s ease;
}@keyframes scaleInBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
  color: #1a252f;
  margin-bottom: 0.5rem;
  font-size  : 2.5rem;
}

.thankyou-subtitle {
  color:    #5a67d8;
   font-size: 1.3rem;
          margin-bottom: 2rem;
  font-weight: 600;
}

.thankyou-message {
	background: white;
    padding: 2rem;
  border-radius: 12px;
   margin-bottom: 2rem;
  text-align   :       left;
     }

.thankyou-message p {


  color: #555;
  margin-bottom: 1rem;
    font-size: 1rem;
}

.next-steps {
   margin-bottom: 3rem;
}

.next-steps h2 {
    text-align: center;
   margin-bottom: 2rem;
   color: #1a252f;
}


.steps-grid {
               display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
	margin-bottom: 2rem;
}

.step-item {
    background: white;
 padding:      1.8rem;
    border-radius: 12px;
      text-align: center;
}

.step-icon {
   font-size :2.5rem;
    color: #5a67d8;
  font-weight: 700;
  margin-bottom   :      1rem;
}

.step-item h3


{
  font-size:        1.1rem;
    color: #1a252f;
  margin-bottom: 0.8rem;
}  

.step-item p {
   color: #666;
  font-size: 0.9rem;
   line-height: 1.5;
}

.useful-info {
   margin-bottom: 2rem;
}

.useful-info h3 {
   text-align: center;
    margin-bottom: 1.5rem;
  color: #1a252f;
}

.info-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 1.5rem;
}

.info-box {
	background: white; 
  padding: 1.5rem; 
         border-radius: 12px; 
    text-align: center; 

}

.info-box h4     {
    color: #5a67d8;
    margin-bottom: 0.8rem;
   font-size: 1rem;
}

.info-box p {
   color  :     #666;
  line-height: 1.6;
  font-size: 0.9rem;
}

.cta-thankyou {
	    background: white;
   padding: 2rem;
    border-radius: 12px;
   margin-bottom: 2rem;
     }

.cta-thankyou p {
	margin-bottom: 1.5rem;
	 font-size: 1rem;
  color: #555;
}

.thankyou-btn {
	display: inline-block;
  background: linear-gradient(135deg, #5a67d8 0%, #6c5ce7 100%);
                    color: white;
   padding: 1rem 2.5rem;
   border-radius: 50px;
  font-weight :  600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(90, 103, 216, 0.3);
	
}

.thankyou-btn:hover


{
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(90, 103, 216, 0.4);
}

.faq-thankyou {
    border-left: 4px solid #5a67d8;
    text-align: left;
    background: #f0f3ff;
  border-radius: 12px;
  padding: 2rem;
}

.faq-thankyou h3 {
   color: #1a252f;
   margin-bottom: 1rem;
  text-align: left;
}

.faq-thankyou p {
	color: #555;
    font-size: 0.95rem;
  text-align: left;
}

.faq-thankyou a {
  color: #5a67d8;
    font-weight: 600;
    text-decoration: underline;
}

.faq-thankyou a:hover {
   color: #6c5ce7;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .services-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.8rem;
    }

    .thankyou-section {
        padding: 2rem 1rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-icon svg {
        width: 80px;
        height: 80px;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
  padding: 80px 2rem;
  background   :  #f8f9fa;
  min-height: calc(100vh - 200px);


}

.policyContainer {
	text-align: left;
   margin: 0 auto;
    max-width: 800px;
}

.policyContainer h1 {
  font-size: 3rem;
   color: #1a252f;
  margin-bottom: 2rem;
   font-weight: 700;
  line-height: 1.2;
}

.policyContainer h2 {
   font-size: 2rem;
     color: #2c3e50;
     margin-bottom: 1.5rem;
            font-weight: 700;
      margin-top: 2.5rem;
       padding-top: 1.5rem;
      border-top: 2px solid #e8ebf0;
}

.policyContainer h2:first-of-type {
    border-top: none;
  margin-top: 0;
  padding-top: 0;


}

.policyContainer p {
    color: #555;
   margin-bottom   : 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policyContainer strong {
  color: #1a252f;

	  font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 1.8rem;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
}