* {
    margin: 0;

   padding: 0;

   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
               line-height: 1.7;
    color: #2c3e50;
  background-color: #fefefe;
	
}

.content-limiter {
   max-width: 1240px;
    margin: 0 auto;
   padding: 0 24px;
}

.main-site-header  {
   background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position :     sticky;
    top: 0;
  z-index: 1000;
  transition    :      all 0.3s ease;
}

.header-wrap-container {
   margin: 0 auto;
  justify-content: space-between;
    padding:     18px 24px;
   display: flex;
  max-width: 1240px;
    align-items: center;
}

.site-main-logo {
               height: 52px;
   width: auto;
}

.primary-navigation {
  display: flex;
  gap: 38px;
    align-items: center;
}

.nav-item-link {
   text-decoration: none;
   color: #34495e;
    font-weight: 500;
  -o-transition: color 0.3s;
   font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-item-link:hover {
   color: #3498db;
}

.nav-item-link.active-page {
	color :       #2980b9;
}

.nav-item-link.active-page::after {
  content: '';
   position: absolute;
   bottom: -6px;
  left: 0;
    width: 100%;
  height: 3px;
	background: #3498db;
}

.mobile-menu-trigger {
   display: none;
  flex-direction: column;
  gap:        5px;
    cursor: pointer;
    padding: 8px;
}



.burger-line {
   background: #34495e;
  transition: all 0.3s ease;
   height: 3px;
   width: 28px;
}

.burger-open .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}



.burger-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-open .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-introduction-block{
    padding: 90px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff; 
	
}

.hero-introduction-block .content-limiter {
   display: grid;
    grid-template-columns: 1.1fr 0.9fr;
     gap: 60px;
    align-items: center;
}

.primary-headline {
   font-size: 52px; 
    font-weight: 700; 
   line-height: 1.2; 
    margin-bottom   :      24px;
}

.hero-description-text {

   font-size: 20px;
					line-height     :       1.6;
   margin-bottom: 36px;
  opacity: 0.95;
     }

.hero-action-buttons

{
   display     : flex;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-cta-button {
    background: #fff;
	color: #667eea;
  padding: 16px 36px;
     border-radius: 8px;
   text-decoration: none;
    font-weight: 600;
    font-size: 17px;
   transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.primary-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.secondary-info-link

{
	 background: transparent;
    color: #fff;
    padding: 16px 36px;
   border: 2px solid #fff;
  border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
          font-size: 17px;
   transition :    background 0.3s, color 0.3s;
   display    :       inline-block;
}

.secondary-info-link:hover {
  background: rgba(255,255,255,0.2);
}



.hero-main-image {

  width: 100%;
	  height: auto;
	  border-radius: 16px;
	  box-shadow: 0 12px 40px rgba(0,0,0,0.2);

}

.feature-benefits-area {
   padding: 95px 0;
    background: #f8f9fa;
}

.section-header-title {
          font-size: 42px;
  text-align: center;
	 margin-bottom: 60px;
    color: #2c3e50;
   font-weight: 700;
} 

.benefits-grid-layout {
	display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 32px;
}

.benefit-card-item {
  background: #fff;
    padding: 38px 28px;
   border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
   transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card-item:hover {

  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	}

.benefit-card-header {

    font-size: 24px;
    margin-bottom: 16px;
   color: #34495e;
  font-weight     : 600;
     }

.benefit-description {
	 font-size: 16px;
     line-height: 1.7;
    color: #555;
}

.course-program-overview {
   padding:      85px 0;
}

.program-content-wrapper {
	display: grid;
   grid-template-columns  :  1.2fr 0.8fr;
    gap: 55px;
  align-items: center;
}

.program-main-heading {
  font-size: 38px;
	margin-bottom: 22px;
  color: #2c3e50;
   font-weight: 700;
}

.program-intro-paragraph {
  font-size: 18px;
                    margin-bottom: 42px;
               color: #555;
    line-height: 1.6;
}

.program-modules-list {
  display: flex;
  flex-direction: column;
    gap: 28px;
}

.module-item-block {
    padding-left: 24px;
   border-left: 4px solid #3498db;

}

.module-title-text {
    font-size: 21px;
    margin-bottom:   10px;
    color :#34495e;
  font-weight: 600;
} 

.module-short-desc {
    font-size: 16px;
   color   :       #666;
  line-height: 1.6;
}

.program-side-image {
               width: 100%;
    height: auto;
	 border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.cta-consultation-block {
 padding: 75px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
}

.cta-content-inner {
   text-align: center;
  max-width: 780px;
    margin: 0 auto;
}

.cta-main-heading {
   font-size: 44px;
    margin-bottom: 20px;
	font-weight     :      700;
}

.cta-supporting-text {
    font-size: 19px;
    margin-bottom: 34px;
                    line-height: 1.6;
   opacity: 0.96;
}

.cta-action-button {
    font-size: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
   display   :    inline-block;
    color: #f5576c;
  font-weight: 600;
   background: #fff;
    border-radius: 8px;
    text-decoration: none;
   padding: 17px 42px;
}

.cta-action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.success-stories-section {
       padding: 90px 0;

   background: #f8f9fa;

}

.stories-section-title {
  font-size: 42px;
    text-align: center;
    margin-bottom: 55px;
   color    :       #2c3e50;
    font-weight: 700;
}


.testimonials-grid-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}


.testimonial-card-box {
   background: #fff;
   padding: 36px 30px;
    border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial-text-content {
  font-size: 17px;
    line-height: 1.7;
   color: #555;
  margin-bottom: 20px;
    font-style: italic; 

}

.testimonial-author-name {

  font-size: 16px;
	color  :  #34495e;
   font-weight: 600;
}

.additional-resources-area {
   padding: 85px 0;
}

.resources-wrapper-layout {
  align-items    :       center;
  display: grid;
  gap: 58px;
   grid-template-columns: 0.9fr 1.1fr;
}

.resources-visual-element {
   width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.resources-heading-text {
    font-size: 38px;
   margin-bottom     :   24px;
   color     :        #2c3e50;
  font-weight: 700;
}

.resources-paragraph {
	   font-size: 17px;
   line-height: 1.7;
    color     :       #555;
                    margin-bottom   :        22px;
     }

.webinar-announcement-zone		{
	padding: 75px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :  #fff;
 text-align    :   center;
}

.webinar-section-headline  {
    margin-bottom    :20px;
  font-weight: 700;
	font-size: 42px;
}

.webinar-description-para {
   font-size: 19px; 
	               margin-bottom: 34px; 
	  max-width: 720px; 
	  margin-left  :      auto; 
	        margin-right: auto; 
	   line-height: 1.6; 
	               opacity: 0.96;
}

.webinar-register-btn {
       background: #fff;
               color: #667eea;
  padding: 17px 42px;
    border-radius   :    8px;
   text-decoration: none;
    font-weight  :       600;
  font-size: 18px;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.webinar-register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.contact-form-section {
    padding: 90px 0;
   background: #f8f9fa;
}

.form-container-box {
   max-width: 820px;
   margin: 0 auto;
   background: #fff;
   padding: 52px 48px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1); 

}

.form-heading-title 
 {
    font-size   :38px;
    margin-bottom: 16px;
  color: #2c3e50;
  text-align: center;
  font-weight: 700;
}

.form-intro-text    {
  font-size: 17px; 
	    color: #666; 
	    text-align: center; 
	   margin-bottom: 40px;
}

.main-contact-form {
      display: flex;
   flex-direction: column;
	 gap: 24px; 

}

.form-row-wrapper {
   display: grid;

	    grid-template-columns: 1fr 1fr;

	  gap: 24px;
}

.form-field-group {
    gap: 8px;
	   flex-direction: column;
	    display: flex;
}

.field-label-text {
    font-weight: 600;
   font-size: 15px;
    color: #34495e;
}

.text-input-field,
.select-input-field,
.textarea-input-field {
   padding     :   14px 16px;
  border: 2px solid #e0e0e0;
    border-radius: 8px;
   font-size: 16px;
    font-family: inherit;
    transition  :     border-color 0.3s, box-shadow 0.3s;
	 background: #fff;
} 

.text-input-field:focus,
.select-input-field:focus,
.textarea-input-field:focus {
  outline: none;
    border-color    : #3498db;
  box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

.text-input-field.input-error,
.select-input-field.input-error,
.textarea-input-field.input-error {
    border-color: #e74c3c;
}

.textarea-input-field {
    resize: vertical;
   min-height: 140px;
}

.form-submit-button {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
        padding: 16px 38px;
    border   :        none;
	border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
  cursor: pointer;
   transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 12px;
     }

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.final-content-showcase {
    padding: 85px 0;
}



.showcase-layout-grid {
   display: grid;
    grid-template-columns: 1.1fr 0.9fr;
  gap :     58px;
   align-items: center;
}

.showcase-heading-element {
      font-size :      38px;
  margin-bottom: 24px;
					color: #2c3e50;
   font-weight   : 700;}

.showcase-text-paragraph {
    font-size   :        17px;
    line-height   :      1.7;
   color: #555;
   margin-bottom: 22px;
}

.showcase-visual-img {

	    width   :   100%;
    height: auto;
	border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);


}



.methodology-explanation-block {
	 padding: 85px 0;
  background: #f8f9fa;
}

.methodology-main-header {

  font-size: 42px;
  text-align: center;
    margin-bottom: 55px;
   color: #2c3e50;
    font-weight     :    700;
	

}

.methodology-cards-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 36px;}

.method-card-element {
    background    :    #fff;
    padding    : 38px 32px;
         border-radius :        12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.method-card-title {
   font-size: 24px;
    margin-bottom: 16px;
    color: #34495e;
       font-weight     :  600;
}  

.method-card-text {
   font-size:      16px;
   line-height: 1.7;
    color: #666;
}

.site-main-footer {
  background: #2c3e50;
    color: #ecf0f1;
	 padding    :        65px 0 32px;
}

.footer-columns-layout {
		display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-image {
  margin-bottom: 18px;
   width: auto;
    height: 48px;
}

.footer-brand-description {
  font-size: 15px;
   line-height: 1.6;
   color: #bdc3c7;
}

.footer-column-heading {
	  color    : #fff;
    font-weight: 600;
    font-size    :  19px;
    margin-bottom: 20px;
	}

.footer-navigation-list {
         display: flex;
  flex-direction: column;
   gap: 12px;
}

.footer-nav-link {
	  color: #bdc3c7;
   text-decoration: none;
   font-size: 15px;
  transition: color 0.3s;
}

.footer-nav-link:hover {
    color: #3498db;
}

.footer-contact-details {
	    display: flex;
       flex-direction: column;
    gap: 8px;
	}

.contact-detail-item {
  font-size   :    15px;
   color: #bdc3c7;
}

.footer-bottom-section {
  border-top: 1px solid rgba(236,240,241,0.1);
  padding-top: 28px;
  text-align   :    center;
}

.copyright-text {
    font-size: 14px;
    color: #95a5a6;
}@media (max-width: 968px) {
    .primary-navigation {
        position: fixed;
        top: 88px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 88px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        box-shadow: -4px 0 12px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        gap: 24px;
    }
    
    .primary-navigation.nav-active {
        right: 0;
    }
    
    .mobile-menu-trigger {
        display: flex;
    }
    
    .hero-introduction-block .content-limiter {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    
    .primary-headline {
        font-size: 38px;
    }
    
    .program-content-wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    
    .resources-wrapper-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    
    .showcase-layout-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    
    .footer-columns-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .form-row-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .primary-cta-button,
    .secondary-info-link {
        text-align: center;
    }
    
    .primary-headline {
        font-size: 32px;
    }
    
    .section-header-title {
        font-size: 34px;
    }
    
    .form-container-box {
        padding: 38px 24px;
    }
}.policySection {
  padding   : 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
   color: #2c3e50;
   font-weight : 700;
   margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.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;
    }
}.about-hero-section {
   padding: 85px 0 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #fff;
  text-align: center;
}

.about-page-headline {
    font-size: 48px;
    font-weight: 700;
   margin-bottom: 22px;
  line-height:        1.2;
}

.about-hero-subtitle {
    font-size :      21px;
    max-width :  840px;
    margin: 0 auto;
   line-height: 1.6;
    opacity: 0.96;

}

.our-story-block {
	padding    :   95px 0;
}

.story-layout-wrapper {
    display     :  grid;
   grid-template-columns: 0.85fr 1.15fr;
   gap: 62px;
    align-items: center;
}

.story-visual-img {
     width: 100%;
    height: auto;
    border-radius: 14px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.story-section-heading {
   font-size: 40px;
    margin-bottom: 26px;
  color: #2c3e50;
    font-weight: 700;
}

.story-paragraph-text {
 font-size    :   17px;
  line-height: 1.75;
  color: #555;
   margin-bottom: 20px;
}

.values-principles-area {

       padding: 85px 0;
   background: #f8f9fa;

}

.values-main-title {
  color: #2c3e50;
               text-align: center;
   font-size: 42px;
   margin-bottom: 58px;
	font-weight: 700;
}

.values-cards-grid {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 34px; 

}

.value-card-block 
 {
    background :      #fff;
   padding: 36px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.07);
       transition: transform 0.3s, box-shadow 0.3s;

}

.value-card-block:hover 
 {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}  

.value-card-heading {
    font-size:      23px;
       margin-bottom: 14px;
     color: #34495e;
       font-weight: 600;
}

.value-card-description

{
    font-size: 16px;
    line-height: 1.7;
    color     :        #666;
}

.expertise-showcase-section {
	padding: 90px 0;
}

.expertise-content-layout {
  display    : grid;
        grid-template-columns: 1.3fr 0.7fr;
   gap: 56px;
    align-items: center;
}

.expertise-heading-main {
  font-size: 40px;
  margin-bottom: 24px;
   color: #2c3e50;
      font-weight: 700;


}

.expertise-description-para {
   font-size: 17px;
  line-height: 1.7;
   color: #555;
    margin-bottom   :     20px;
}

.expertise-points-list    {
  display: flex;
  flex-direction: column;
  gap: 26px;
      margin-top: 36px;
}

.expertise-point-item {
   padding-left: 22px;
    border-left   :   4px solid #f093fb;
}

.point-title-text {
    font-size: 20px;
   margin-bottom: 10px;
   color: #34495e;
   font-weight:  600;
}

.point-desc-text {
   font-size: 16px;
   color: #666;
  line-height: 1.65;
}

.expertise-side-image  
  {
  width: 100%;

	  height:   auto;

	    border-radius: 14px;

	  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.approach-methodology-block {
      background: #f8f9fa;
   padding: 85px 0;
}

.approach-section-header		{
    font-size: 42px;
   text-align: center;
      margin-bottom: 20px;
   color: #2c3e50;
    font-weight: 700;
}

.approach-intro-description {
  font-size: 18px;
   text-align: center;
    max-width    : 780px;
          margin: 0 auto 56px;
  color:      #555;
   line-height: 1.65;
}

.approach-steps-container {

         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 38px;
	}

.approach-step-card {
    background: #fff;
   	padding: 40px 32px;
       border-radius: 12px;
     box-shadow: 0 5px 18px rgba(0,0,0,0.08);
     position: relative;


}

.step-number-badge {
    width: 58px;
    height: 58px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
   border-radius :   50%;
   display: flex;
    align-items: center;
	justify-content: center;
   font-size: 24px;
    font-weight: 700;
	margin-bottom: 22px;
}

.step-heading-title {
    font-size: 23px;
   margin-bottom: 16px;
   color: #34495e;
   font-weight: 600;
}

.step-content-text {
  font-size: 16px;
	line-height: 1.7;
  color: #666;
}

.results-numbers-section {
    padding: 85px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.numbers-section-title {
                    font-size: 42px;
       text-align: center;
     margin-bottom: 56px;
     font-weight: 700;
}

.stats-grid-layout   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 40px;
}

.stat-item-box {
  text-align: center;
}

.stat-number-display {


	 font-size: 56px;
  font-weight :        700;
   margin-bottom: 12px;}

.stat-label-text {
                    font-size: 18px;
   opacity :  0.95;
	
}

.mission-vision-area {
     padding: 90px 0;


}

.mission-content-wrapper {
  display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  align-items: center;
}

.mission-image-element {
  width: 100%;
      height: auto;
   border-radius: 14px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.mission-heading-text {
         font-size: 40px;
    margin-bottom: 26px;
   color: #2c3e50;
  font-weight: 700;}

.mission-paragraph-content {
	color: #555;
   line-height: 1.75;
  margin-bottom: 20px;
   font-size: 17px;
}

.why-choose-us-block {
    padding: 85px 0;
    background: #f8f9fa;
}

.why-us-main-heading {
    font-size: 42px;
  text-align: center;
    margin-bottom: 58px;
   color    :   #2c3e50;
	font-weight: 700;}

.why-us-reasons-grid
{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;


}

.reason-card-item {
   background :        #fff;
    padding: 34px 28px;
    border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.07);
   transition :       transform 0.3s;
}

.reason-card-item:hover {
  transform: translateY(-4px);
}

.reason-card-title {
    font-weight: 600;
    color: #34495e;
          margin-bottom: 14px;
   font-size:  22px;
}

.reason-card-text {
  font-size: 16px;
   line-height: 1.7;
    color: #666;
}

.cta-about-section {
  padding:       75px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.cta-about-inner {


    text-align: center;
    max-width   :760px;
   margin    :   0 auto;


}

.cta-about-heading {
    font-size: 44px; 
		margin-bottom: 20px; 
	   font-weight: 700;
}

.cta-about-text {
    font-size: 19px; 
		margin-bottom: 34px; 
	   line-height: 1.6; 
	  opacity: 0.96;
}

.cta-about-button {
    background: #fff;
   border-radius: 8px;
   font-size: 18px;
  padding  :      17px 42px;
    font-weight: 600;
   display: inline-block;
	transition :     transform 0.2s, box-shadow 0.2s;
   color: #667eea;
      text-decoration: none;
}

.cta-about-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.thankyou-main-section    {
    padding  :       100px 0 90px;
    background: #f8f9fa;
    min-height: 70vh;
}

.thankyou-content-box {
    max-width: 780px; 
	margin    :    0 auto; 
  text-align: center; 
    background: #fff; 
  padding: 58px 48px; 
   border-radius: 16px; 
  box-shadow: 0 8px 32px rgba(0,0,0,0.1); 

}



.thankyou-icon-wrapper {
    margin-bottom: 32px;

}

.success-checkmark-circle
	{
    width    :   90px;
   height: 90px;
 border-radius: 50%;
  background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
   margin: 0 auto;
    position: relative;
}


.checkmark-stem {
	 position: absolute;
  width: 6px;
    height: 32px;
  background: #fff;
  left: 46px;
    top: 24px;
  transform: rotate(45deg);
}

.checkmark-kick 
 {
    position: absolute;
   width: 18px;
 height :      6px;
	background: #fff;
    left     :       32px;
  top: 48px;
  transform: rotate(-45deg);
}

.thankyou-main-heading {
 font-size: 42px;
  margin-bottom: 18px;
  color: #2c3e50;
   font-weight: 700;
}

.thankyou-description-text {
  line-height: 1.65;
  margin-bottom: 42px;
   font-size: 18px;
	color: #555;
}

.thankyou-info-block {
  background: #f8f9fa;
    padding: 36px 32px;
    border-radius: 12px;
    margin-bottom:    38px;
  text-align: left;


} 

.info-block-heading {
         font-size: 26px;
   margin-bottom: 26px;
   color: #34495e;
   font-weight: 600;
   text-align   :     center;
}

.next-steps-list {

          display: flex;
	flex-direction: column;
    gap: 24px;
	}

.step-item-element
{
    display: flex;
  gap: 18px;
   align-items: flex-start;
}


.step-number-circle {
    width   :42px;
	    height:    42px;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color:   #fff;
	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	   font-size: 18px;
	  font-weight: 700;
	   flex-shrink: 0;
}

.step-description-text		{
	 font-size: 16px;
    color: #555;
	line-height: 1.7;
   margin-top :8px;
}

.thankyou-actions-wrapper {
  display: flex;
  gap: 18px;
  justify-content: center;
    flex-wrap: wrap; 
	
}

.primary-return-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
   padding: 16px 38px;
   border-radius: 8px;
   text-decoration: none;
    font-weight    :  600;
   font-size: 17px;
	transition:   transform 0.2s, box-shadow 0.2s;
   display: inline-block;


}

.primary-return-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.secondary-about-link {
   background: transparent;
  color: #667eea;
    padding    :        16px 38px;
	border: 2px solid #667eea;
    border-radius :8px;
  text-decoration: none;
  font-weight: 600;
    font-size: 17px;
   transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.secondary-about-link:hover {
   background:        #667eea;
  color: #fff;
}

.additional-resources-thankyou {

	    padding: 85px 0;
}

.resources-thankyou-title {
  font-size   :  40px;
    text-align: center;
    margin-bottom: 18px;
	color: #2c3e50;
   font-weight: 700;

}

.resources-thankyou-intro {
       font-size: 18px;
    text-align: center;
        max-width: 720px;
    margin: 0 auto 52px;
    color: #555;
   line-height  :       1.65;}

.resources-cards-grid
{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
               gap: 36px;


}

.resource-card-box {
   background: #fff;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
	 transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);


}

.resource-card-image {
       width: 100%;
    height: 220px;
  object-fit: cover;


}

.resource-card-heading {
    font-size: 21px;
               margin: 24px 24px 12px;
  color: #34495e;
  font-weight: 600;
}

.resource-card-description {
    font-size: 16px;
  color: #666;
    line-height: 1.7;
    padding: 0 24px 26px;


}

.contact-reminder-block    {
   padding: 75px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff; 

}

.reminder-content-inner {
   text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.reminder-heading-text {
	font-size: 38px;
   margin-bottom     : 18px;
   font-weight: 700;
}

.reminder-description-para {
   line-height: 1.65;
    margin-bottom: 32px;
   opacity :    0.96;
   font-size: 18px;
}

.reminder-contact-info {
        display: flex;
   flex-direction: column;
   gap: 10px;
}

.reminder-phone-display {
       font-size:     28px;
				font-weight: 700;
	    margin-bottom  :8px;
} 

.reminder-address-text {
  font-size: 17px;
  opacity     :  0.94;
}@media (max-width: 968px) {
    .story-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    
    .expertise-content-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    
    .mission-content-wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    
    .about-page-headline {
        font-size: 38px;
    }
    
    .thankyou-content-box {
        padding: 42px 28px;
    }
}

@media (max-width: 640px) {
    .about-page-headline {
        font-size: 32px;
    }
    
    .thankyou-main-heading {
        font-size: 34px;
    }
    
    .thankyou-actions-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .step-item-element {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stat-number-display {
        font-size: 44px;
    }
}