* {
        margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	   scroll-behavior: smooth;
     }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color: #2c3e50;
  background-color: #ffffff; 

}

.navbar {
   background-color: #1a1a1a;
    padding: 1rem 0;
  position: sticky;
    top: 0;
   z-index     : 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
	max-width     :  1200px;
		 margin: 0 auto;
  padding: 0 2rem;
    display: flex;
   justify-content: space-between;
  align-items: center;
}

.nav-logo-section {
  flex-shrink: 0;


}

.nav-logo {
  height: 94px;
   width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
  display: none;
   flex-direction: column;
	background: none;
                    border: none;
    cursor: pointer;
  z-index :      1001;
}

.burger-menu span {
    width: 25px;
   height: 3px;
   background-color: #ffffff;
                    margin: 5px 0;
     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(8px, -8px);
	}

.nav-links {
  display: flex;
   list-style: none;
    gap: 2rem;
}

.nav-links a   {
   color: #ffffff;
  text-decoration: none;
  font-weight: 600;
   transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-links a:hover  {
  color: #67b26f;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 80px;
        width: 100%;
        flex-direction: column;
        background-color: #1a1a1a;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 1rem;
    }

    .nav-links li {
        padding: 1rem;
        border-bottom: 1px solid #333;
    }

    .nav-links a {
        padding: 0;
    }
}.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   padding: 5rem 2rem;
       display:   flex;
    align-items: center;
  justify-content: center;
   gap: 3rem;
   min-height: 600px;
}

.hero-content {
  flex: 1;
          max-width: 550px;
}

.hero h1 {
    font-size     :      2.8rem;
    margin-bottom: 1.5rem;
  font-weight: 700;
   line-height: 1.2;
}

.hero p {
   font-size: 1.3rem;
  margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-button {
  display: inline-block;
   background-color    :        #ffffff;
   color :  #667eea;
      padding: 1rem 2.5rem;
   text-decoration: none;
        border-radius: 50px;
  font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-image

{
    flex: 1;
          width: 100%;
    height: auto;
  border-radius: 10px;
   object-fit: cover;
    max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 3rem 1rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 100%;
    }
}.container-section {
  max-width: 1200px;
   margin: 0 auto;
   padding    :     0 2rem;
}

.section-about-mentoring {
    padding: 5rem 2rem;
  background-color:   #f8f9fa;
}

.section-about-mentoring h2 {
  font-size: 2.2rem;
    margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.section-about-mentoring p

{
    font-size: 1.05rem;
  margin-bottom: 1.5rem;
    line-height: 1.8;
   color: #555;
}

.section-image {
    width   :  100%;
    height: auto;
    border-radius    :    10px;
   margin-top: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section-services-overview {


    padding: 5rem 2rem;
   background-color: #ffffff;
}

.section-services-overview h2  {
   font-size: 2.2rem;
    text-align: center;
    margin-bottom:    3rem;
    color   :  #1a1a1a;
	}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; 
	
}

.service-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: #ffffff;
   padding: 2.5rem;
       border-radius: 10px;
   transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {

	    font-size: 1.5rem;
   margin-bottom: 1rem;
     }

.service-card p {
         font-size: 0.95rem; 
	                    line-height: 1.7; 
	   opacity: 0.95;
}

.section-coaching-benefits {

	  padding: 5rem 2rem;
   background-color: #f0f4ff;
}

.section-coaching-benefits h2 {
  font-size: 2.2rem;
         margin-bottom  : 3rem;
    color: #1a1a1a;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
       align-items: center;
}

.benefits-image {
   width: 100%; 
  height     :        auto; 
    border-radius: 10px; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
} 

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
   padding: 0.8rem 0;
	 padding-left: 2rem;
    position: relative;
    font-size  :  1.05rem;
   color: #333;
    line-height: 1.6;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
    color: #67b26f;
    font-weight: 700;
	font-size: 1.3rem;
}@media (max-width: 768px) {
    .benefits-layout {
        grid-template-columns: 1fr;
    }
}.section-coaching-process {
   padding: 5rem 2rem;
   background-color: #ffffff;
}

.section-coaching-process h2   {
    font-size: 2.2rem;
      margin-bottom: 1rem;
  color: #1a1a1a;
}

.section-coaching-process > .container-section > p {
   font-size: 1.05rem;
  margin-bottom: 3rem;
		color     :        #666;
	
}

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 2rem;
}

.step {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
     color    :#ffffff;
   padding: 2rem;
	border-radius  :       10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step h3 {
    font-size: 1.3rem;
   margin-bottom     :1rem;
}

.step p
{
   font-size: 0.95rem;
    line-height: 1.7; 

}

.section-expertise-transfer {
    padding: 5rem 2rem;
   background-color: #f0f4ff;
}

.section-expertise-transfer h2 {
    font-size: 2.2rem;
  margin-bottom: 3rem;
   color: #1a1a1a;
}

.expertise-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
} 

.expertise-image {
  width: 100%;
  height: auto;
   border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.expertise-text p  
  {
   font-size: 1.05rem;
    margin-bottom: 1.5rem;
  line-height    :1.8;
  color: #555;
     }@media (max-width: 768px) {
    .expertise-content {
        grid-template-columns: 1fr;
    }
}.section-mentorship-model {
   padding: 5rem 2rem;
	background-color: #ffffff;
}

.section-mentorship-model h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
          color: #1a1a1a; 

}

.section-mentorship-model > .container-section > p {
  font-size: 1.05rem;
  margin-bottom: 3rem;
    color: #666;
}

.mentorship-features {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:   2rem;
}

.feature
	{
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
   color: #ffffff;
  padding: 2rem;
    border-radius: 10px;
     transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature h3 {
  margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-corporate-programs
	{
    padding: 5rem 2rem;
   background-color: #f8f9fa;
}

.section-corporate-programs h2		{
   font-size: 2.2rem;
    margin-bottom: 1rem;
	 color: #1a1a1a;
}

.section-corporate-programs > .container-section > p {
	 font-size:    1.05rem;
  margin-bottom: 2rem;
   color: #666;
}

.corporate-image {
  width: 100%;
  height: auto;
   border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.corporate-benefits {
		 background: #ffffff;
	    padding: 2rem;
	    border-radius:        10px;
	          margin-top: 2rem;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	}

.corporate-benefits p {
  color: #555;
 font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
} 

.corporate-benefits strong {

	  color: #667eea;
}

.section-success-stories {
    padding: 5rem 2rem;
  background-color    :   #ffffff;
}

.section-success-stories h2 {
         font-size: 2.2rem;
  text-align: center;
   margin-bottom: 1rem;
    color: #1a1a1a;
} 

.section-success-stories > .container-section > p {
   text-align: center;
   font-size: 1.05rem;
  margin-bottom: 3rem;
  color    :        #666;
}

.stories-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
	
}

.story-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   padding: 2rem;
  border-radius: 10px;
   transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.story-card h3 {
    font-size: 1.3rem;
   margin-bottom: 1rem;
}

.story-card p {
   line-height: 1.7;

    opacity: 0.95;

   font-size: 0.95rem;
}

.section-cta-booking {
      padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
    text-align: center;
}

.section-cta-booking h2 {
	font-size: 2.2rem;
   margin-bottom: 1rem;
}

.section-cta-booking p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button-large {
	   display: inline-block;
   background-color: #ffffff;
    color: #667eea;
   padding: 1.2rem 3rem;
   text-decoration: none;
	 border-radius: 50px;
  font-weight: 600;
    font-size: 1.1rem;
  transition :  all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover
	{
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.section-contact {
   padding: 5rem 2rem;
   background-color: #f0f4ff;
}

.section-contact h2 {


  font-size: 2.2rem;
  margin-bottom: 1rem;
    color: #1a1a1a;
  text-align     :    center;


}

.section-contact > .container-section > p {

          text-align: center;
   font-size: 1.05rem;
  margin-bottom: 3rem;
  color: #666;
}

.contact-form {
         max-width :    600px;
	margin    :     0 auto;
  background: #ffffff;
    padding: 2.5rem;
   border-radius  : 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
   margin-bottom: 0.5rem;
   color: #1a1a1a;
   font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
	padding: 0.8rem;
  border   :     2px solid #e0e0e0;
  border-radius: 5px;
  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: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);

}

.submit-button {
  width: 100%;
      padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
   border: none;
   border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
	cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);}

.footer {
   background-color: #1a1a1a; 
   color: #ffffff; 
     padding: 3rem 2rem 1.5rem;
}

.footer-content {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section{
    padding: 1rem;


}

.footer-logo {
  height: 136px;
	width: auto;
  filter: brightness(0) invert(1);
  display: block;
   margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.2rem;
   margin-bottom: 1rem;
    color: #67b26f;

}

.footer-section p {


               font-size: 0.95rem;
    line-height: 1.8;
   opacity: 0.9;
  margin-bottom: 0.5rem;

}

.footer-links {
  list-style  :    none;
   padding: 0;
}

.footer-links li {
   margin-bottom: 0.8rem;
}

.footer-links a {

   color: #ffffff;
    text-decoration: none;
                    transition: color 0.3s ease;
     }

.footer-links a:hover {
   color: #67b26f;
}

.footer-bottom {

	  max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #333;
  padding-top: 2rem;
    text-align: center;
     }

.footer-bottom p {
  font-size: 0.9rem; 
	    opacity: 0.8; 
	   margin-bottom: 0.5rem;

}@media (max-width: 768px) {
    section {
        padding: 3rem 1rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   color: #ffffff;
   padding   :5rem 2rem;
   display: flex;
  align-items: center;
    justify-content: center;
    gap: 3rem;
  min-height: 600px;

}

.services-hero-content  
  {
    flex: 1;
    max-width: 550px;
}

.services-hero h1 {
  font-size     :2.8rem;

	    margin-bottom: 1.5rem;

	   font-weight: 700;

		line-height: 1.2;
}

.services-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.services-hero-image     {
    flex: 1;
  width: 100%;
   height: auto;
	border-radius: 10px;
   object-fit: cover;
   max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}@media (max-width: 768px) {
    .services-hero {
        flex-direction: column;
        padding: 3rem 1rem;
        min-height: auto;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-hero-image {
        max-width: 100%;
    }
}.services-main {
    padding: 5rem 2rem;
  background-color: #ffffff;
}

.services-main h2 
 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size  :      2.2rem;
}

.services-main > .container-section > p {


  font-size: 1.05rem;
  text-align: center;
    margin-bottom: 3rem;
   color: #666;

}



.services-list{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
} 

.service-item
	{
   background: #f8f9fa;
        border-radius: 10px;
  padding: 2.5rem;
   transition: all 0.3s ease;
    border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-item:hover {
  transform: translateY(-5px);
   border-color: #667eea;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.service-icon-placeholder {
   display: inline-block;
    width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-radius: 10px;
   display: flex;
   align-items: center;
    justify-content: center;
    font-size: 1.8rem;
   font-weight: 700;
    margin-bottom: 1rem;
}

.service-item h3 {
   	font-size: 1.5rem;
  margin-bottom: 1rem;
   color: #1a1a1a;

}

.service-item > p {
    font-size: 0.95rem;
  color  :        #555;
	line-height   :   1.7;
  margin-bottom: 1.5rem;

}

.service-benefits {
    list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-benefits li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
    position: relative;
         font-size: 0.9rem;
  color: #666;
}

.service-benefits li:before {
  content: "→";
    position  :      absolute;
   left:      0;
  color: #667eea;
    font-weight: 700;
}

.service-price {
  font-size: 1rem;
    color: #1a1a1a;
  padding-top: 1.5rem;
   border-top   :        1px solid #e0e0e0;
}

.services-comparison {
    padding: 5rem 2rem;
    background-color: #f0f4ff;
}

.services-comparison h2 {
  font-size: 2.2rem;
         text-align: center;
  margin-bottom: 1rem;
   color: #1a1a1a; 
	
}

.services-comparison > .container-section > p {
  text-align: center;
    font-size: 1.05rem;
	margin-bottom: 2rem;
  color: #666;
}

.comparison-table  
  {
    background: #ffffff;
  border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.table-header {
        display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
    font-weight: 600;
}

.table-header .table-cell {
  padding: 1.5rem;
   text-align: left;
}

.table-row  
  {
   display: grid;
  grid-template-columns: repeat(5, 1fr);
	border-bottom: 1px solid #e0e0e0;
   transition: background-color 0.3s ease;
}

.table-row:hover {
  background-color:        #f8f9fa;
}

.table-row .table-cell {
	    padding: 1.5rem;
  color: #555;
    font-size: 0.95rem;
     }@media (max-width: 1024px) {
    .table-header,
    .table-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .table-header .table-cell:nth-child(n+3),
    .table-row .table-cell:nth-child(n+3) {
        display: none;
    }
}.services-how-it-works {
    padding: 5rem 2rem;
  background-color: #ffffff;
}

.services-how-it-works h2 {
    font-size: 2.2rem;
    text-align   :  center;
   margin-bottom: 3rem;
      color: #1a1a1a;
}

.how-it-works-steps {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 2rem;
}

.how-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  display: inline-block;
		width: 80px;
    height :        80px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: #ffffff;
  border-radius: 50%;
  display: flex;
    align-items :     center;
   justify-content: center;
         font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.how-step h3 {
   font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.how-step p {
    font-size: 0.95rem;
       color: #666;
   line-height: 1.6;
}

.services-faq {
  padding: 5rem 2rem; 
    background-color: #f8f9fa;
}

.services-faq h2 {
   font-size :      2.2rem;
	text-align: center;
   margin-bottom: 3rem;
    color: #1a1a1a;

}

.faq-items {
  max-width: 800px; 
	 margin: 0 auto; 
  display   :grid; 
  grid-template-columns: 1fr; 
   gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
    padding    :     2rem;
          border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   transition  : all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-item h3 {

    font-size   :       1.1rem;

	  color: #1a1a1a;

	  margin-bottom: 0.8rem;


}

.faq-item p {
  font-size: 0.95rem;
   color: #666;
  line-height: 1.7;
}

.services-cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :       #ffffff;
   text-align: center;
}

.services-cta h2 {
   font-size: 2.2rem;
   margin-bottom: 1rem;
}

.services-cta p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity :    0.95;
}

.cta-button-services {
   display: inline-block;
   background-color: #ffffff;
  color: #667eea;
	 padding:     1.2rem 3rem;
   text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
   font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



.cta-button-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thankyou-container {
	 padding: 4rem 2rem;
  background-color: #f0f4ff;
       display: flex;
   align-items: center;
  justify-content: center;
  gap: 3rem;
   min-height: 700px;
}

.thankyou-content {
  flex: 1;
   max-width: 500px;
}

.thankyou-icon {
    text-align: center;
   margin-bottom: 2rem;
}

.checkmark {
   display:      inline-block;
      width: 100px;
    height: 100px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
   color :       #ffffff;
  border-radius    :      50%;
   display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
               font-weight: 700;
}

.thankyou-container h1 {
  font-size: 2.5rem;
   color:    #1a1a1a;
   margin-bottom: 1rem;
   text-align: center;
}

.thankyou-message {
	font-size   : 1.2rem;
   color: #666;
  text-align: center;
  margin-bottom: 2rem;
}

.submission-details {
  background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
   margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.submission-details p {
  font-size: 0.95rem;
  color: #555;
   line-height: 1.7;
	 margin-bottom: 1rem;
}

.submission-details strong {
   color: #667eea;
}

.next-steps  {
        background: #ffffff; 
  padding: 2rem; 
  border-radius: 10px; 
  margin-bottom: 2rem; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.next-steps h2 {
  font-size: 1.4rem;
    color: #1a1a1a;
   margin-bottom: 1.5rem;
}

.steps-list {
   display: flex;
	flex-direction: column;
  gap: 1rem;
}

.step-item {
	 display: flex;
    gap: 1.5rem;
}

.step-icon {
    display: flex;
  align-items: center;
   justify-content  :  center;
   width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
    border-radius: 50%;
  font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
  font-size: 1rem;
   color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.step-text p {
   font-size: 0.85rem;
   color: #666;
   line-height: 1.5;
}


.contact-info {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color    :        #ffffff;
    padding: 2rem;
  border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info h2 {
   font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.contact-info p {
     font-size: 0.95rem;
	 margin-bottom: 0.5rem;
}

.phone-number {
   margin-bottom: 0.5rem;
   font-size: 1.8rem;
    font-weight: 700;
}



.contact-hours {
  font-size: 0.9rem;
   opacity: 0.9;
}

.action-buttons {
   margin-bottom: 2rem;
    display    :  flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 1rem;
    text-align: center;
	text-decoration: none;
   border-radius: 5px;
  font-weight: 600;
   transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:     #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
	  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-secondary {

	    background: #ffffff;
   color: #667eea;
    border: 2px solid #667eea;
	}

.btn-secondary:hover {
  background: #667eea;
   color: #ffffff;
}

.faq-reminder {
	background: #ffffff;
                    padding: 2rem;
   border-radius: 10px;
    border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-reminder h3 {


  font-size :    1.1rem;
   color: #1a1a1a;
   margin-bottom: 1rem;


}

.faq-reminder ul {
    list-style: none;
  padding: 0;
}

.faq-reminder li {
  padding    :   0.5rem 0;
  padding-left: 1.5rem;
   position: relative;
        font-size: 0.9rem;
    color :    #666;


}

.faq-reminder li:before {
  content: "✓";
    position: absolute;
  left: 0;
    color: #667eea;
	font-weight: 700;
}

.thankyou-image-section {
   flex: 1;
   max-width: 500px;
}

.thankyou-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
} @media (max-width: 768px) {
    .thankyou-container {
        flex-direction: column;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .how-it-works-steps {
        grid-template-columns: 1fr;
    }
}.policySection {
      padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
  max-width: 900px;
   margin: 0 auto;
  text-align: left;
  background: #ffffff;
    padding: 3rem;
  border-radius   :10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.policyContainer h1
	{
  font-size: 2.8rem;
	color: #1a1a1a;
    margin-bottom: 2rem;
          font-weight: 700;
   border-bottom :3px solid #667eea;
    padding-bottom: 1rem;
}

.policyContainer h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
 color: #2c3e50;
	 font-size: 1.8rem;
    font-weight: 600; 
	
}

.policyContainer p {
    color: #555;
  margin-bottom: 1.2rem;
     line-height: 1.8;
  font-size: 1rem;
	 text-align: justify;
}

.policyContainer p:first-of-type

{
          margin-top: 0;
}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }

    .policyContainer {
        padding: 2rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policyContainer {
        padding: 1.5rem;
    }

    .policySection {
        padding: 50px 0.5rem;
    }
}