* {
  box-sizing: border-box;
    margin: 0;
    padding     :    0;

}

html {
	scroll-behavior     : smooth;
}

body     {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	line-height  :     1.6;
  color: #2c3e50;
   background-color: #fafbfc;
}

.section-container {
   max-width: 1200px;
         margin: 0 auto;
	 padding: 0 20px;
}

main-navigation {
  position: sticky;
    top: 0;
   background: #ffffff;
  border-bottom: 1px solid #e8ecf1;
	z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.nav-container {
   max-width  :       1200px;
    margin: 0 auto;
               padding :   16px 20px;
   display   :flex;
    justify-content :     space-between;
    align-items: center;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img   {
   height: 40px;
   width: auto;
}

.nav-links {
	 list-style: none;
    padding: 0;
   display: flex;
  gap: 32px;
      margin: 0;
}

.nav-links a {
   	text-decoration: none;
        color   :      #2c3e50;
   font-weight: 500;
    font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover  {

   color: #3b82f6;


}

.burger-btn {
        display     :     none;
	 flex-direction: column;
   background: none;
                    border: none;
  cursor: pointer;
   padding: 8px;
}

.burger-line {
   height: 3px;
    transition: all 0.3s ease;
  background-color: #2c3e50;
  width: 24px;
    margin: 5px 0;
   border-radius: 2px;
}@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #ffffff;
        padding: 16px;
        border-bottom: 1px solid #e8ecf1;
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #e8ecf1;
        padding: 12px 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 18px;
    }
}.burger-btn.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}

.burger-btn.active .burger-line:nth-child(2) {
   opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);

}

.hero-section {
    display     :    grid;
	  grid-template-columns     :   1fr 1fr;
	  gap: 48px;
	   align-items  :center;
	    padding     :      80px 20px;
	  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
} 

.hero-content h1 {
   font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
  margin-bottom: 24px;
   color: #1a202c;

}

.hero-content p {

	   font-size: 18px;
   color: #4a5568;
      margin-bottom: 32px;
   line-height: 1.7;}

.hero-image {
   width  :   100%;
}

.hero-image img    {

	    width:    100%;
	 height: auto;
	 border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);}

.cta-button 
 {
   display: inline-block;
   padding: 14px 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius  :    8px;
    font-weight   : 600;
    font-size: 16px;
	transition: all 0.3s ease;
   border: none;
   cursor: pointer;
}

.cta-button:hover

{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4); 

}

.cta-large {
   padding: 16px 40px;
   font-size: 18px;
}@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}.services-preview {
        padding: 80px 20px;
   background-color: #ffffff;
}

.services-preview h2 {
  font-size :     36px;
           font-weight: 700;
      text-align  :    center;
                       margin-bottom: 56px;
      color   :#1a202c;
}

.services-grid     {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
	 background: #f8fafc;
    border-radius :    12px;
    padding: 32px;
    border :       1px solid #e2e8f0;
   transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.service-icon {
   width: 64px;
   height: 64px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
   display: flex;
    align-items    :   center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-icon img {
      width: 32px;
  height: 32px;
	stroke: #3b82f6;
  filter: drop-shadow(0 0 0px #3b82f6); 
	
}

.service-card h3 {
	 font-size: 20px;
  font-weight: 600;
   margin-bottom: 16px;
    color: #1a202c;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-preview h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
}.mentorship-block {
   padding: 80px 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.mentor-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 48px;
  align-items: center;
}

.mentor-text h2 {
  font-size    :       36px;
    font-weight    :  700;
  margin-bottom: 24px;
   color: #1a202c;
}

.mentor-text p     {
             color: #4a5568;
   margin-bottom: 24px;
	font-size: 16px;
  line-height: 1.7;
     } 

.mentor-features {

   list-style: none;
    padding   :  0;
	 margin: 24px 0 0 0;}

.mentor-features li
	{
   padding: 12px 0 12px 32px;
   color : #2c3e50;
	position: relative;
  font-size: 15px;

}

.mentor-features li:before {
	  content: '';
 position: absolute;
  left     :        0;
   top: 16px;
    width: 12px;
        height   : 12px;
   background-color  :   #3b82f6;
    border-radius: 2px;
	


}

.mentor-content img {
   width: 100%; 
      height: auto; 
    border-radius     : 12px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}@media (max-width: 1024px) {
    .mentor-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mentor-text h2 {
        font-size: 32px;
    }
}.case-studies
	{
    padding: 80px 20px;
	background-color: #ffffff;
}

.case-studies h2 {
  font-size: 36px;
                    font-weight: 700;
    text-align: center;
    margin-bottom  :      56px;
  color :       #1a202c;
}

.cases-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.case-item


{
    background: #f8fafc;
  border-radius: 12px;
    overflow: hidden;
  border: 1px solid #e2e8f0;
  transition    :  all 0.3s ease;
}

.case-item:hover

{
    border-color: #3b82f6;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15); 

}

.case-item img {
	   width: 100%;
   height: 240px;
  object-fit: cover; 

     }

.case-item h3 {
	 font-size: 18px;
       font-weight: 600;
       padding: 20px 20px 12px;
  color :       #1a202c;
}

.case-item p {

   padding: 0 20px 20px;
        color  : #4a5568;
  font-size   :       14px;
	 line-height: 1.6;
	}

@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-studies h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
}.cta-appointment {
	padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.cta-content h2


{
  font-size     :     40px;
	   font-weight: 700;
	    color: #ffffff;
	   margin-bottom: 24px;
}

.cta-content p {
       font-size   :     18px;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
          line-height: 1.6;
}

.cta-appointment .cta-button {
    background     :      #ffffff;
  color: #667eea;
  font-weight: 700;
	
}

.cta-appointment .cta-button:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-section {
	padding:   80px 20px;
       background-color: #ffffff;
}

.contact-section h2 {
   font-size: 36px;
   font-weight: 700;
   text-align: center;
  margin-bottom:56px;
   color: #1a202c;
}

.contact-wrapper {
	    display     :    grid;
   grid-template-columns: 2fr 1fr;
                    gap  :        48px;}

.contact-form {
   background     :    #f8fafc;
   padding: 40px;
  border-radius: 12px;
   border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
	 display: block;
               margin-bottom     :   8px;
    font-weight: 600;
   color: #1a202c;
  font-size  :        15px;
}

.form-group input,
.form-group textarea,
.form-group select

{
	border: 1px solid #cbd5e0;
  font-family: inherit;
    padding: 12px;
    font-size: 15px;
  border-radius: 6px;
    transition: border-color 0.3s ease;
   width    : 100%;
}



.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
     outline: none;
    border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
	}

.submit-button
{
				 width    :        100%;
   padding   :  14px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
   border: none;
   border-radius: 6px;
   font-size: 16px;
	 font-weight: 600;
               cursor: pointer;
  transition  : all 0.3s ease;
}

.submit-button:hover  
  {
  transform: translateY(-2px);
	  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
}

.contact-info {

		background: #f8fafc;
               padding  :32px;
  border-radius: 12px;
    border: 1px solid #e2e8f0;
  height: fit-content;}

.contact-info h3 {
    font-size   :       20px;
   font-weight: 600;
  margin-bottom  :    24px;
    color: #1a202c;
}

.contact-info p {
	         color: #4a5568;
  margin-bottom: 20px;
   font-size: 15px;
	line-height: 1.6;
	}



.contact-info strong {
         color     :       #2c3e50;
       font-weight: 600;
}@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 32px;
    }
}.main-footer {
  background: #1a202c;
    color   :    #cbd5e0;
  padding  :       60px 20px 24px;
}


.footer-content {
  max-width: 1200px;
  margin: 0 auto 40px;
    display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo-img {


  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 16px;}

.footer-desc {
    line-height     : 1.6;
    font-size: 14px;
	color: #a0aec0; 

}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 16px;
   font-weight: 600;
    margin-bottom    :     16px;
}

.footer-links ul,
.footer-legal ul {
   list-style: none;
  padding: 0;
      margin    :        0;
}

.footer-links li,
.footer-legal li  {

	   margin-bottom  :   12px;}

.footer-links a,
.footer-legal a {
  transition   :  color 0.3s ease;
	text-decoration: none;
	 color: #cbd5e0;
	font-size: 14px;
}

.footer-links a:hover,
.footer-legal a:hover {
	 color: #3b82f6;
}



.footer-contact p {
    color: #a0aec0;
   font-size:    14px;
   line-height: 1.8;
    margin-bottom: 12px;
}

.footer-bottom {
   border-top: 1px solid #2d3748;
    padding-top: 24px;
  text-align :       center;
	 color: #718096;
    font-size     :    14px;
}@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}.services-hero {
  padding :80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  text-align: center;
}

.services-hero h1		{
   font-size: 42px;
	font-weight: 700;
   margin-bottom: 16px;
	line-height: 1.2;
}

.services-hero p {
	font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
	
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero p {
        font-size: 16px;
    }
}.services-detailed {
  padding: 80px 20px;
                    background-color  :  #ffffff;


}

.service-detailed-block {
  display:grid;
      grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detailed-block:last-child	{

  margin-bottom: 0; 

	}

.service-detailed-block.service-alt {
  grid-template-columns: 1fr 1fr;
}

.service-detailed-block.service-alt .service-detail-content


{
                    order: 2;
}

.service-detailed-block.service-alt .service-detail-img {
  order: 1;
	
}

.service-detail-img {

	    width: 100%;

}

.service-detail-img img {
  width    :    100%; 
	        height: auto; 
	    border-radius: 12px; 
	  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-detail-content h2 {
         font-size: 32px;
	font-weight: 700;
    margin-bottom: 20px;
  color: #1a202c;


}

.service-detail-content p {
    font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;}

.service-features {
   list-style: none;
  padding: 0;
   margin: 24px 0;
}

.service-features li {
		 padding: 12px 0 12px 28px;
  color: #2c3e50;
  position: relative;
   font-size: 15px;
    line-height: 1.5;
	
     }

.service-features li:before {
  content: '';
   position: absolute;
  left: 0;
        top: 16px;
   width: 12px;
    height: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 2px;

}

.service-price {
    font-size: 18px;
          font-weight: 600;
    color: #667eea;
   margin-top: 24px;
}  @media (max-width: 1024px) {
    .service-detailed-block {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
    }

    .service-detailed-block.service-alt .service-detail-content {
        order: 1;
    }

    .service-detailed-block.service-alt .service-detail-img {
        order: 2;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }
}.service-packages {
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.service-packages h2 {
     font-size: 36px;
  font-weight: 700;
   text-align: center;
   margin-bottom: 12px;
  color: #1a202c;
}

.packages-intro {
         text-align: center;
   color: #4a5568;
	 margin-bottom: 48px;
  font-size   :16px;
}

.packages-grid {
  display:        grid;
  grid-template-columns: repeat(3, 1fr);
   gap     :      32px;
}

.package-card {

  background: #ffffff;
    border: 2px solid #e2e8f0;
  border-radius   :        12px;
  padding: 32px;
   text-align     :     center;
  transition: all 0.3s ease;
     position: relative;
     }

.package-card:hover {
	 border-color: #667eea;
  box-shadow: 0 12px 36px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);
}

.package-card.featured {
    border-color   :    #667eea;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
  transform: scale(1.05);
}

.package-label {
   position: absolute;
   top: -12px;
	left: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
  padding: 4px 12px;
                    border-radius: 4px;
         font-size: 12px;
  font-weight: 600;

}

.package-card h3 {
  font-size: 22px;

	   font-weight  :     700;

	   margin: 20px 0 8px;

	   color: #1a202c;


}

.package-description {
  color:    #4a5568;
    font-size: 14px;
  margin-bottom: 24px;
}

.package-features {
   text-align: left;
  list-style: none;
   padding: 0;
   margin: 24px 0; 

}

.package-features li {
  color: #2c3e50; 
	  font-size: 14px; 
	    position: relative; 
	   padding: 10px 0 10px 24px; 
	    line-height: 1.5; 
	
}

.package-features li:before


{
  content: '';
  position: absolute;
  left: 0;
    top: 13px;
  width: 8px;
  height  :     8px;
  background-color   : #667eea;
        border-radius: 50%;
}



.package-price {
   font-size: 28px;
  font-weight: 700;
  color: #667eea;
         margin: 24px 0;
}

.package-btn {
   display: inline-block;
	padding: 12px 28px;
   background: #f0f4ff;
    color     :       #667eea;
   text-decoration: none;
     border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
	border: 2px solid #dbeafe;
   transition: all 0.3s ease;
    cursor: pointer;
  border :       none;
}

.package-btn:hover {

    background: #e0e9ff;
	 color: #764ba2;}

.package-btn.featured-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color: #ffffff;
    padding     : 14px 32px;
}

.package-btn.featured-btn:hover  {


  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);


}@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .package-card.featured {
        grid-column: 1 / -1;
        transform: scale(1);
    }
}@media (max-width: 640px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card.featured {
        grid-column: 1;
    }

    .service-packages h2 {
        font-size: 28px;
    }
}.why-choose-us {
   padding: 80px 20px;
   background-color: #ffffff;
}

.why-choose-us h2 
 {
   font-size: 36px;
   font-weight: 700;
    text-align: center;
  margin-bottom  :       56px;
    color  :       #1a202c;
}

.reasons-grid {
	display: grid;
  grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.reason-item    {
  text-align: center;
} 

.reason-icon {
    width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
   display: flex;
    align-items: center;
   justify-content: center;
        margin: 0 auto 20px;
}

.reason-icon img {
   width: 40px;
   height: 40px;
	 stroke: #667eea;
  filter: drop-shadow(0 0 0px #667eea);
}

.reason-item h3 {

	     font-size  :    18px;
   font-weight: 600;
 margin-bottom: 12px;
  color: #1a202c;
}

.reason-item p		{
   color: #4a5568;
  font-size: 14px;
  line-height: 1.6;
}@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
}.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.faq-section h2 {
	 font-size: 36px;
   font-weight  :       700;
  text-align: center;
    margin-bottom: 56px;
  color: #1a202c;
}

.faq-grid {
	 display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 24px;
  max-width  :     1000px;
    margin :    0 auto;
}

.faq-item {
  background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
   overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover	{
      border-color    :       #667eea; 
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.1);

}

.faq-header {
    padding: 20px;
   background: #f8fafc;
   cursor: pointer;
   display: flex;
    justify-content: space-between;
    align-items:  center;
    user-select: none;
}

.faq-header h3 {
   font-size: 16px;
    font-weight: 600;
  color: #1a202c;
	 margin: 0;
}

.faq-toggle {
	font-size: 24px;
    color: #667eea;
    transition: transform 0.3s ease;
   font-weight: 300;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer

{
  padding: 0 20px 20px;
    color: #4a5568;
    font-size: 14px;
  line-height: 1.6;
   max-height: 0;
    overflow: hidden;
   transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;

	max-height  :500px;
	
}@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
}.contact-section-services


{
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.contact-section-services h2 {
   font-size: 36px;
   font-weight: 700;
   color: #ffffff;
   margin-bottom: 12px;
}

.contact-section-services p {
  color: rgba(255, 255, 255, 0.9);
                    font-size: 16px;
    margin-bottom :  40px;
}

.contact-info-block {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 24px;
   margin-bottom: 32px;
    max-width: 600px;
    margin-left   : auto;
  margin-right: auto; 
	
}


.info-card {

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 8px;
  padding: 20px;
  backdrop-filter: blur(10px);}

.info-card h3 {
  color  :       #ffffff;
		 font-size  :        16px;
	font-weight: 600;
               margin-bottom: 8px;


}

.info-card p {
  color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
   margin: 0;
}@media (max-width: 768px) {
    .contact-info-block {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-section-services h2 {
        font-size: 28px;
    }
}.thank-you-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  min-height: calc(100vh - 400px);
}

.thank-you-content  
  {
	    text-align: center;
    max-width: 700px;
   margin: 0 auto;
}

.success-icon {
         width: 100px;
       height: 100px;
     background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
     border-radius: 50%;
      display: flex;
     align-items: center;
       justify-content: center;
       margin: 0 auto 32px;
}

.success-icon img {
  width: 50px;
      height:       50px;
   stroke   :#22c55e;
  filter: drop-shadow(0 0 0px #22c55e);
}

.thank-you-content h1 {
   font-size: 42px;
   font-weight: 700;
    margin-bottom: 12px;
  color: #1a202c;
}

.thank-you-subtitle {
    font-size: 18px;
	color: #4a5568;
    line-height: 1.6;
   margin-bottom: 32px;
}

.thank-you-info {
  background: #ffffff;
  -moz-border-radius: 12px;
   border: 2px solid #e2e8f0;
   border-radius :   12px;
	-webkit-border-radius: 12px;
    padding: 32px;
        margin-bottom: 40px;
}

.thank-you-info p {
	 font-size: 15px;
   margin-bottom :        12px;
  color   :   #2c3e50;
   line-height: 1.7;
}

.thank-you-info p:last-child {
   margin-bottom: 0;
}

.thank-you-info strong {
   color: #667eea;

  font-weight: 600;
}

.next-steps {
  margin-bottom: 48px;
}

.next-steps h2 {
  font-size: 28px;
  font-weight: 700;
   margin-bottom: 32px;
    color: #1a202c;
}

.steps-grid  
  {
        display: grid;
  grid-template-columns: repeat(3, 1fr);
	 gap: 24px;
  margin-bottom: 32px;
}

.step
{
	      background: #ffffff;
    border  :  1px solid #e2e8f0;
   border-radius   :   12px;
        padding: 24px;
   transition: all 0.3s ease;

}

.step:hover {
     border-color: #667eea;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.1);}

.step-number {
    display: flex;
    align-items    : center;
   justify-content: center;
  width: 50px;
  height :        50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
          font-size: 24px;
               font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 16px;

}

.step h3 {
    font-size: 16px;
    font-weight: 600;
   color  : #1a202c;
   margin-bottom: 8px;
}

.step p {
  color: #4a5568;
	font-size: 14px;
  line-height     :        1.6;
	margin: 0;
}@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .thank-you-content h1 {
        font-size: 32px;
    }

    .next-steps h2 {
        font-size: 24px;
    }
}.recommended-content {

  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
   border-radius: 12px;
  padding: 32px;
	margin-bottom   :        40px;
	}

.recommended-content h2 {
    font-size: 20px;

	    font-weight: 700;

	    color: #1a202c;

		margin-bottom: 20px;
}

.action-list {
          list-style: none;
   padding: 0;
  margin   :0;
  text-align: left;
}

.action-list li {
  padding: 12px 0 12px 28px;
      color: #2c3e50;
       position: relative;
    font-size: 15px;
      line-height: 1.5;
}

.action-list li:before {
    top: 16px;
  width: 12px;
  content: '';
    left: 0;
    position: absolute;
   background-color: #667eea;
  border-radius: 2px;
  height: 12px;
     }  

.cta-group     {
   display: flex;
  gap: 16px;
               justify-content:center;
   flex-wrap  :      wrap;
}

.cta-secondary {
    background: #ffffff;
   color   :       #667eea;
	border:     2px solid #667eea;
}

.cta-secondary:hover {
   background: #f0f4ff;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.15);
}

.testimonials-brief {
  padding: 80px 20px;
	background-color   :#ffffff;
}

.testimonials-brief h2 {
   font-size     :   36px;
  font-weight: 700;
   text-align    :  center;
    margin-bottom: 56px;
   color: #1a202c;
}

.testimonials-grid {
    display :       grid;
    gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
    padding: 28px;
   transition: all 0.3s ease;
}

.testimonial-card:hover {
	border-color: #667eea;
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.1);

}

.testimonial-text {
  color: #2c3e50;
   font-size: 15px;
	 line-height: 1.7;
   margin-bottom    :     16px;
	font-style   :  italic;


}

.testimonial-author {
	 color: #667eea;
	font-weight: 600;
	 font-size : 14px;
    margin: 0;

}@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-brief h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
}.policySection {
   padding: 80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
   max-width: 800px;
  margin:   0 auto;
    text-align: left;
}



.policyContainer h2 {
      font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer p {
  color: #7f8c8d;
    margin-bottom: 1.5rem;
 line-height: 1.7;
  font-size: 1.1rem; 
	
}
@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}