:root {
    --ocean-depth: #1a2332;
    --moonlight-silver: #f8f9fa;
    --forest-emerald: #2d5330;
    --sunset-amber: #ff8c42;
    --sky-azure: #4a90e2;
    --charcoal-shadow: #2c3e50;
    --pearl-white: #ffffff;
    --smoke-gray: #6c757d;
    --crimson-accent: #e74c3c;
    --warm-sand: #f5f3f0;
}

* {
  margin: 0;
  padding: 0;
          box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.7;
  color: var(--charcoal-shadow);
  background: var(--moonlight-silver);
	font-size: 16px;
}

.primary-navigation {
  background: var(--pearl-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: fixed;
  top: 0;
    width :   100%;
   z-index: 1000;
   border-bottom: 1px solid #e8ecef;
}

.navigation-container {
 max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.navigation-bar {
  display: flex;
    justify-content: space-between;
  align-items: center;
   padding: 18px 0;
          position: relative;
}

.brand-identity img {
  height     :   42px;
  width :      auto;
} 

.menu-checkbox	{

	    display: none;}

.menu-activator {
  display: none;
}

.burger-lines {
  width    :        28px;
  height: 3px;
  background: var(--charcoal-shadow);
  position: relative;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-lines:before,
.burger-lines:after {
  content: '';
  position: absolute;
  width: 28px;
	 height: 3px;
  background: var(--charcoal-shadow);
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-lines:before {
   top: -9px;
}

.burger-lines:after {
  top: 9px;
}

.navigation-wrapper {


    display: flex;
    align-items  : center;
  gap     :     34px;

}

.nav-menu-list {
    display: flex;
 list-style: none;
   gap: 34px;
  margin: 0;
   padding: 0;
}

.menu-element {
    list-style: none;
	
}

.menu-link {
  color: var(--charcoal-shadow);
	 text-decoration: none;
   font-size: 17px;
   font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
    transition : all 0.3s ease;
    position: relative;
}

.menu-link:hover {
  color: var(--sky-azure);
  background: rgba(74, 144, 226, 0.08);
}@media screen and (max-width: 890px) {
    .menu-activator {
        display: block;
        cursor: pointer;
        padding: 12px;
        z-index: 2;
    }

    .navigation-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-white);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 90px;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .menu-element {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .menu-link {
        display: inline-block;
        padding: 13px 28px;
        font-size: 19px;
        color: var(--charcoal-shadow);
        width: 100%;
    }

    .menu-checkbox:checked ~ .navigation-wrapper {
        left: 0;
    }

    .menu-checkbox:checked ~ .menu-activator .burger-lines {
        background: transparent;
    }

    .menu-checkbox:checked ~ .menu-activator .burger-lines:before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-checkbox:checked ~ .menu-activator .burger-lines:after {
        transform: rotate(-45deg);
        top: 0;
    }
}.main-content {
  margin-top: 78px;
}

.hero-showcase {
  background: linear-gradient(135deg, var(--warm-sand) 0%, var(--moonlight-silver) 100%);
  padding   : 89px 0 76px;
  position:      relative;
}

.showcase-container    {
   max-width: 1280px;
   margin: 0 auto;
	padding: 0 24px;

}

.hero-content-grid {
   min-height: 480px;
   gap: 67px;
    display: grid;
    grid-template-columns: 1fr 1fr;
   align-items :   center;
}

.hero-text-area {
   padding-right: 34px;
}

.primary-heading {
  font-size: 48px;
   font-weight: 700;
  color: var(--ocean-depth);
    margin-bottom: 28px;
	 line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-description {
   font-size: 19px;
  color: var(--smoke-gray);
   margin-bottom: 42px;
	line-height: 1.8;
  max-width: 540px;
}

.hero-actions {
   display   :      flex;
     gap: 21px;
   flex-wrap: wrap;
}

.primary-action-btn {
  background: var(--sky-azure);

  color: var(--pearl-white);

	padding: 16px 32px;

   text-decoration: none;

    border-radius: 8px;

   font-weight: 600;

  font-size :       16px;

  transition: all 0.3s ease;

  border: 2px solid var(--sky-azure);
}

.primary-action-btn:hover {
  background: var(--ocean-depth);
  border-color: var(--ocean-depth);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.secondary-action-btn {
      background: transparent;
  color: var(--charcoal-shadow);
    padding: 16px 32px;
   text-decoration:     none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
    transition: all 0.3s ease;
  border: 2px solid var(--charcoal-shadow);
}

.secondary-action-btn:hover {
  background: var(--charcoal-shadow);
  color: var(--pearl-white);
  transform: translateY(-2px);
}  

.hero-visual-area {
   position: relative;
}

.hero-image {
   width: 100%;
    height: auto;
  border-radius: 13px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.03);
}@media screen and (max-width: 890px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .hero-text-area {
        padding-right: 0;
        order: 2;
    }

    .hero-visual-area {
        order: 1;
    }

    .primary-heading {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 17px;
        margin-bottom: 34px;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .primary-heading {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-action-btn,
    .secondary-action-btn {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
}.expertise-showcase {
      padding: 87px 0;
  background: var(--pearl-white);

}

.expertise-container {

	   max-width: 1280px;
   margin: 0 auto;
   padding: 0 24px;
     }

.section-title {
   font-size: 42px;
    font-weight: 700;
  color: var(--ocean-depth);
          text-align: center;
   margin-bottom: 67px;
    letter-spacing: -0.01em;
}

.expertise-grid {
		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 43px;
	}

.expertise-card {
  background: var(--moonlight-silver);
   border-radius  :        12px;
    padding   :  34px 28px;
   transition: all 0.3s ease;
  border: 1px solid rgba(108, 117, 125, 0.1);
}

.expertise-card:hover {
  transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0,0,0,0.1);
     border-color: var(--sky-azure);
}

.card-visual


{
   	margin-bottom: 24px;
   overflow: hidden;
   border-radius: 8px;
     }

.expertise-img     {
   width: 100%;
   height: 220px;
    object-fit: cover;
  transition: transform 0.4s ease;
}

.expertise-card:hover .expertise-img {


  transform: scale(1.05);
}

.card-heading {
	  font-size: 24px;
    font-weight: 600;
  color: var(--ocean-depth);
   margin-bottom: 18px;
	}

.card-text {
  color: var(--smoke-gray);

    line-height: 1.7;

  font-size: 16px;
}

.benefits-section {
   padding: 89px 0;
  background: linear-gradient(135deg, var(--warm-sand) 0%, rgba(255, 255, 255, 0.9) 100%);

}

.benefits-container {
    max-width: 1280px;
	margin: 0 auto;
    padding: 0 24px; 

     }

.benefits-layout {

	  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 78px;
   align-items: center;

}

.benefits-title {
	   font-size     :  38px; 
	  font-weight: 700; 
	  color: var(--ocean-depth); 
	   margin-bottom: 34px; 
		line-height: 1.3;


}

.benefit-item 
 {
   margin-bottom     :      32px;
    padding: 24px;
  background: var(--pearl-white);
         border-radius: 10px;
  border-left: 4px solid var(--sky-azure);
   transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.benefit-heading {
    font-size: 20px;
      font-weight: 600;
     color: var(--ocean-depth);
   		margin-bottom: 12px;
} 

.benefit-description {
  color: var(--smoke-gray);
   line-height :   1.6;
  font-size: 15px; 

}

.benefits-visual     {
   position: relative;
	
}

.benefits-image {
  width: 100%;
   height: auto;
	border-radius: 15px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}@media screen and (max-width: 890px) {
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .benefits-title {
        font-size: 32px;
        text-align: center;
    }
}.programs-showcase {
  padding: 87px 0;
  background: var(--pearl-white);
}


.programs-container {
   max-width   :    1280px;

    margin: 0 auto;

  padding: 0 24px;
}

.programs-main-title {
   font-size    :  42px;
	font-weight    : 700;
  color: var(--ocean-depth);
   text-align: center;
  margin-bottom: 67px;
    letter-spacing:  -0.01em;
}

.programs-grid {
   display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	 gap: 43px;
}

.program-block {
  background: var(--moonlight-silver);
         border-radius: 12px;
   padding: 42px 32px;
	transition: all 0.3s ease;
   border: 2px solid transparent;
  position: relative;
   overflow: hidden;
}

.program-block:hover {
  transform: translateY(-6px);
  border-color: var(--sky-azure);
  box-shadow: 0 25px 50px rgba(74, 144, 226, 0.15);
}

.program-block::before {
  content: '';
        position: absolute;
   top: 0;
    left: 0;
    right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-azure), var(--forest-emerald));
}

.program-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--ocean-depth);
					margin-bottom: 24px;
}

.program-features {
   margin-bottom: 28px;
  list-style: none;
}

.feature-point {
   padding :      8px 0;
  color: var(--smoke-gray);
    position: relative;
   padding-left: 24px;
}

.feature-point:before

{
  content: '';
    position: absolute;
   left : 0;
  color: var(--forest-emerald);
  font-weight: bold;
}

.program-duration {
  background: var(--sky-azure);
  color: var(--pearl-white);
   padding: 12px 20px;
    border-radius: 6px;
  font-weight: 600;
	 display: inline-block;
   font-size: 14px;
}

.methodology-section {
   padding: 89px 0;
     background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--charcoal-shadow) 100%);
     color: var(--pearl-white);
}

.methodology-container {
    max-width: 1280px;
	 margin: 0 auto;
  padding: 0 24px;
} 

.methodology-heading {
  font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 34px;
  letter-spacing: -0.01em;
}

.methodology-intro {
   font-size   :19px;
	    text-align: center;
	   margin-bottom: 67px;
	    max-width  :  720px;
	  margin-left: auto;
	    margin-right: auto;
	  opacity: 0.9;
	    line-height: 1.7;
}

.methodology-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
}  

.step-item
{
    display: flex;
  gap: 24px;
      align-items: flex-start;
}

.step-number {
  background: var(--sky-azure);
  width     :     54px;
   height: 54px;
        border-radius: 50%;
    display: flex;
  align-items: center;
   justify-content: center;
   font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.step-title  {
  font-size: 22px;
               font-weight: 600;
   margin-bottom: 12px;

}

.step-text {
   opacity: 0.9;
  line-height: 1.6;
}@media screen and (max-width: 640px) {
    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }
}.testimonials-area {
  padding    :87px 0;
  background: var(--moonlight-silver);
}

.testimonials-container {
    max-width: 1280px;
  margin: 0 auto;
   padding  :     0 24px;
}

.testimonials-title {
	font-size: 42px;
  font-weight: 700;
  color: var(--ocean-depth);
   text-align: center;
  margin-bottom: 67px;
        letter-spacing: -0.01em;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 43px;
}

.testimonial-card {
  background: var(--pearl-white);
   padding: 38px 32px;
        border-radius: 15px;
  border: 1px solid rgba(108, 117, 125, 0.1);
   transition: all 0.3s ease;
      position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-card::before {
  content: '"';
   position: absolute;
   top: -10px;
   left: 28px;
  font-size: 60px;
  color: var(--sky-azure);
  font-weight: bold;
   line-height: 1;
}

.testimonial-text {
    font-size: 17px;
  line-height: 1.7;
  color: var(--smoke-gray);
    margin-bottom: 24px;
   padding-top: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
	 flex-direction: column;
    gap: 4px; 
	
}

.author-name 
 {
   font-size    : 18px;
  color: var(--ocean-depth);
    font-weight: 600;
}

.author-position


{
	font-size: 14px;
  color: var(--smoke-gray);
    opacity: 0.8;
}

.cta-section {
	padding: 78px 0;
  background: linear-gradient(135deg, var(--sky-azure) 0%, var(--forest-emerald) 100%);
  text-align     :  center;
  color: var(--pearl-white);
}

.cta-container {
   max-width: 890px;
  margin  :       0 auto;
   padding: 0 24px;
}

.cta-heading	{
   font-size: 45px;
   font-weight: 700;
          margin-bottom: 28px;
    line-height: 1.3;
  letter-spacing: -0.01em;
}

.cta-description {
  font-size:     20px;
   margin-bottom: 42px;
       line-height: 1.7;
    opacity: 0.95;
}

.cta-button {
  background: var(--pearl-white);
  color: var(--sky-azure);
	padding: 18px 38px;
    text-decoration: none;
    border-radius: 8px;
				 font-weight: 700;
  font-size: 18px;
    display: inline-block;
  transition: all 0.3s ease;
  border: 3px solid var(--pearl-white);
}

.cta-button:hover {
  background: transparent;
  color: var(--pearl-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}@media screen and (max-width: 640px) {
    .cta-heading {
        font-size: 34px;
    }

    .cta-description {
        font-size: 18px;
    }
}.contact-section {
  padding: 89px 0;
  background: var(--warm-sand);
}

.contact-container

{
        max-width: 1280px;
    margin: 0 auto;
   padding     :        0 24px;
}

.contact-layout {

		display: grid;
  grid-template-columns    :    1fr 1.2fr;
   gap: 67px;}

.contact-title		{
    font-size: 38px;
  font-weight: 700;
  color: var(--ocean-depth);
   margin-bottom: 24px;
}

.contact-intro {
        font-size  :  17px;
  color: var(--smoke-gray);
   margin-bottom  :        38px;
    line-height    :     1.7;


}

.contact-details {
	 display: flex;
  flex-direction: column;
   gap: 28px;
}

.contact-item {
     padding: 20px;
  background: var(--pearl-white);
   border-radius  :        8px;
  border-left: 4px solid var(--sky-azure);
}

.contact-label {
          font-size : 16px;
   font-weight: 600;
  color: var(--ocean-depth);
               margin-bottom   :     8px;
}

.contact-value {
  color: var(--smoke-gray);
    font-size: 16px;
  line-height: 1.5;
}

.contact-form-area {
  background: var(--pearl-white);
  padding: 42px 38px;
   border-radius   : 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.consultation-form {
  display: flex;
    flex-direction: column;
   gap: 24px;
}

.form-group {
  display: flex;
    flex-direction: column;


}

.form-label {
   font-weight: 600;
  color: var(--ocean-depth);
    margin-bottom    :      8px;
    font-size: 15px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 16px;
  border: 2px solid rgba(108, 117, 125, 0.2);
	border-radius :      6px;
   font-size: 16px;
   transition: all 0.3s ease;
	font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
      outline: none;
  border-color: var(--sky-azure);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-textarea {
   resize: vertical;
  min-height: 120px;
}

.form-submit-btn {

	  background: var(--sky-azure);
  color: var(--pearl-white);
  padding: 16px 32px;
   border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight     :        600;
   cursor:    pointer;
	transition: all 0.3s ease;
   margin-top: 8px; 



}

.form-submit-btn:hover

{
  background: var(--ocean-depth);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);

}@media screen and (max-width: 890px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-form-area {
        padding: 32px 28px;
    }
}.site-footer {
  background: var(--ocean-depth);
  color: var(--pearl-white);
	padding: 67px 0 28px;
} 

.footer-container {
   max-width: 1280px;
   margin: 0 auto;
  padding: 0 24px;
}


.footer-layout {
  display  :grid;
   grid-template-columns: 1.5fr 1fr 1fr;
   gap: 56px;
   margin-bottom: 45px;
}

.footer-logo {
    height: 45px;
    width: auto;
   margin-bottom: 18px;
}  

.footer-tagline {
    line-height: 1.6;
				 opacity: 0.9;
  max-width: 280px;
    font-size: 16px;
}

.footer-heading     {

	    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
  color: var(--pearl-white);
}

.footer-nav  {
    list-style: none;
   display: flex;
	 flex-direction: column;
   gap :     12px;
	
}

.footer-link {
  color: rgba(248, 249, 250, 0.8);
  text-decoration: none;
	font-size: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover  
  {
  color: var(--pearl-white);
    padding-left: 8px;
}

.footer-contact-info {
    display: flex;
    flex-direction     :column;
  gap: 16px;
}

.footer-address,
.footer-phone {
  color: rgba(248, 249, 250, 0.8);
   font-size: 15px;
     line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 249, 250, 0.2);
   padding-top: 28px;
    text-align: center;
}

.copyright-text		{
  font-size:       14px;
   opacity: 0.8;
}@media screen and (max-width: 890px) {
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .footer-tagline {
        max-width: none;
        margin: 0 auto;
    }
}

@media screen and (max-width: 640px) {
    .section-title,
    .programs-main-title,
    .testimonials-title,
    .methodology-heading {
        font-size: 34px;
    }

    .benefits-title,
    .contact-title {
        font-size: 28px;
    }

    .expertise-grid,
    .programs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}.about-hero-section {
	   padding    :       89px 0 76px;
  background: linear-gradient(135deg, var(--warm-sand) 0%, var(--moonlight-silver) 100%);
	}

.about-hero-container {
     max-width: 1280px;
   margin: 0 auto;
  padding: 0 24px;
         display    :   grid;
  grid-template-columns: 1fr 1fr;
    gap: 67px;
	align-items: center;
}

.about-main-heading {
  font-size: 48px;
    font-weight: 700;
  color: var(--ocean-depth);
   margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-hero-description {
   font-size: 19px;
  color: var(--smoke-gray);
  line-height: 1.8;
  max-width: 540px;
}

.about-hero-image {
	width    : 100%;
   height: auto;
    border-radius :  13px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.about-hero-image:hover {
  transform: scale(1.03);
}@media screen and (max-width: 890px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .about-main-heading {
        font-size: 38px;
    }

    .about-hero-description {
        font-size: 17px;
    }
}.mission-vision-section {
   padding:       87px 0;
  background: var(--pearl-white);
}

.mission-vision-container {
   max-width: 1280px;
    margin:        0 auto;
   padding: 0 24px;
}

.mission-vision-grid {
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 56px;
}  

.mission-block,
.vision-block {
  padding:42px 34px;
  background: var(--moonlight-silver);
  border-radius: 12px;
  border-left: 4px solid var(--sky-azure);
}

.mission-title,
.vision-title {

               font-size: 32px;
  font-weight: 600;
  color: var(--ocean-depth);
   margin-bottom: 24px;}


.mission-content,
.vision-content {


  font-size: 17px;
  color: var(--smoke-gray);
    line-height: 1.7;
     }@media screen and (max-width: 890px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}.our-story-section {
  padding: 89px 0;
  background: linear-gradient(135deg, var(--warm-sand) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.our-story-container {

	    max-width: 1280px;
                    margin: 0 auto;
  padding:0 24px;}

.story-layout {
               display: grid;
               grid-template-columns: 1.2fr 1fr;
    gap:        78px;
   align-items: flex-start;
}

.story-heading {
	font-size: 42px;
   font-weight: 700;
  color: var(--ocean-depth);
    margin-bottom: 45px;
   letter-spacing: -0.01em;
}

.story-timeline


{
    display: flex;
    flex-direction: column;
  gap: 34px;
}

.timeline-item {
   display: flex;
   gap: 24px;
  padding: 28px;
  background: var(--pearl-white);
	 border-radius: 10px;
  border-left: 4px solid var(--forest-emerald);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(45, 83, 48, 0.15);
}

.timeline-year {
  background: var(--forest-emerald);
  color: var(--pearl-white);
    width: 64px;
    height:  64px;
   border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
	font-weight: bold;
  font-size:16px;
                    flex-shrink: 0;
}

.timeline-title {
    font-size: 20px;
   font-weight :      600;
  color: var(--ocean-depth);
  margin-bottom: 12px;
}

.timeline-text {
  color: var(--smoke-gray);
  line-height: 1.6;
    font-size: 15px;
}

.story-image {
  width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}@media screen and (max-width: 890px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}.values-section {
  padding: 87px 0;
  background: var(--pearl-white);
}

.values-container	{
       max-width: 1280px;
   margin: 0 auto;
  padding: 0 24px;}

.values-main-title {
    font-size: 42px;
  font-weight: 700;
  color: var(--ocean-depth);
    text-align: center;
    margin-bottom: 67px;
  letter-spacing:  -0.01em;
}

.values-grid {
	  display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.value-card {
  background: var(--moonlight-silver);
	 padding: 38px 32px;
    border-radius: 12px;
  text-align :     center;
   transition    :    all 0.3s ease;
    border: 2px solid transparent;


}



.value-card:hover
{

	  transform: translateY(-8px);
  border-color: var(--sky-azure);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
}

.value-heading {
    font-size: 24px; 
	   font-weight:    600; 
	  color: var(--ocean-depth); 
	   margin-bottom: 18px;
}

.value-description
	{
  color: var(--smoke-gray); 
	   line-height: 1.7; 
	    font-size: 16px;
}

.approach-methodology-section {

	    padding: 89px 0;
  background: linear-gradient(135deg, var(--ocean-depth) 0%, var(--charcoal-shadow) 100%);
  color: var(--pearl-white);

}  

.approach-container {
    max-width: 1280px;
	 margin: 0 auto;
    padding: 0 24px;
}

.approach-heading {
   font-size: 42px;
 font-weight: 700;
    text-align: center;
  margin-bottom: 34px;
  letter-spacing: -0.01em;
}

.approach-intro {
    font-size: 19px;
          text-align:        center;
   margin-bottom: 67px;
    max-width: 720px;
    margin-left: auto;
  margin-right: auto;
    opacity: 0.9;
    line-height: 1.7;
}

.approach-features {

	       display: flex;
    flex-direction: column;
  gap: 34px;
     }

.feature-row {
	  display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 45px;


     }

.feature-item {
	 padding: 32px 28px;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2); 
	
}

.feature-title {
  font-size: 22px;
                    font-weight   :   600;
  margin-bottom: 16px;
}

.feature-text {
    opacity  :  0.9;
    line-height: 1.6;
}@media screen and (max-width: 890px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}.expertise-areas-section


{
   padding: 87px 0;
  background: var(--moonlight-silver);
}

.expertise-areas-container {
   max-width: 1280px;
	   margin: 0 auto;
	    padding    :0 24px;
} 

.expertise-areas-title {
   font-size: 42px;
    font-weight: 700;
  color: var(--ocean-depth);
  text-align:       center;
   margin-bottom: 67px;
        letter-spacing: -0.01em;
}

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 43px;
}

.specialization-item {

	  background: var(--pearl-white);
  border-radius  :      12px;
   overflow: hidden;
   transition: all 0.3s ease;
  border: 1px solid rgba(108, 117, 125, 0.1);


}

.specialization-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.specialization-image {
   height: 220px;
   width: 100%;
   transition: transform 0.4s ease;
     object-fit: cover;
}

.specialization-item:hover .specialization-image {
  transform: scale(1.05);

}

.specialization-content {
    padding:        32px 28px;


}



.specialization-heading {
    font-size: 24px;
  font-weight: 600;
  color: var(--ocean-depth);
    margin-bottom: 18px;
	
}

.specialization-text {
  color: var(--smoke-gray);
  line-height: 1.7;
    font-size :   16px;}

.why-choose-us-section {
    padding: 87px 0;
  background: var(--pearl-white);
}

.why-choose-container {
                    max-width: 1280px;
   margin :  0 auto;
   padding :     0 24px;
}

.why-choose-title {
   font-size: 42px;
  font-weight: 700;
  color: var(--ocean-depth);
   text-align: center;
  margin-bottom: 67px;
   letter-spacing: -0.01em;
}

.reasons-list {

    display:    flex;
    gap: 34px;
    flex-direction: column;
   max-width: 890px;
  margin: 0 auto;
	}

.reason-item {
    display: flex;
  gap    :  28px;
	align-items     :        flex-start;
	padding: 34px;
  background: var(--moonlight-silver);
                    border-radius: 12px;
  transition: all 0.3s ease;
}

.reason-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.15);
}

.reason-number {
  background: var(--sky-azure);
  color: var(--pearl-white);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  font-weight: bold;
   font-size: 20px;
        flex-shrink: 0;
}

.reason-heading {
	 font-size    :     24px;
   font-weight: 600;
  color: var(--ocean-depth);
  margin-bottom: 12px;
}

.reason-text {
  color: var(--smoke-gray);
  line-height: 1.6;
   font-size: 16px;
}

.thankyou-hero-section {
	padding: 89px 0;
  background: linear-gradient(135deg, var(--warm-sand) 0%, var(--moonlight-silver) 100%);
   min-height: 70vh;
  display: flex;
  align-items: center;


}  

.thankyou-container {
    max-width :    890px;
  margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.success-indicator {
  margin-bottom: 34px;
}

.checkmark-circle {
  width: 89px;
     height     :89px;
  background: var(--forest-emerald);
  border-radius: 50%;
  display: flex;
    align-items: center;
	 justify-content: center;
   margin     :0 auto 28px;
  animation: pulse 2s infinite;
}

.checkmark-symbol {
  color: var(--pearl-white);
	    font-size: 42px;
	   font-weight: bold; 

}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}.thankyou-heading {
  font-size: 45px;
    font-weight: 700;
  color: var(--ocean-depth);
       margin-bottom   :        28px;
   line-height    :    1.2;
}  

.thankyou-message {
    font-size: 19px;
  color: var(--smoke-gray);
   margin-bottom: 56px;
  line-height: 1.7;
  max-width: 720px;
    margin-left: auto;
    margin-right: auto;

}

.next-steps-info {
  background: var(--pearl-white);

	    padding: 45px 38px;

	    border-radius: 15px;

	  margin-bottom: 45px;

	  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}



.next-steps-title {
    font-size: 28px;
   font-weight: 600;
  color: var(--ocean-depth);
   margin-bottom:    34px;
}

.steps-timeline {
               display: flex;
          flex-direction: column;
    gap: 24px;
   text-align: left;
	
}

.step-point {
   display  :    flex;
    gap: 24px;
	align-items: flex-start;
}

.step-marker {


  background: var(--sky-azure);
  color: var(--pearl-white);
  width: 42px;
  height: 42px;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    font-weight: bold;
	 flex-shrink: 0;


}

.step-heading {
	font-size     :       18px;
   font-weight: 600;
  color: var(--ocean-depth);
	 margin-bottom: 8px;
}

.step-description {
  color: var(--smoke-gray);
	line-height: 1.6;
	font-size: 15px;
}  

.additional-info-section {
  margin-bottom: 45px;
}

.additional-info-title     {
     font-size: 24px;
   font-weight: 600;
  color: var(--ocean-depth);
   margin-bottom: 28px;
}

.info-cards-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 24px;
   text-align: left;

}

.info-card {
  background: var(--pearl-white); 
    padding: 28px 24px; 
   border-radius: 10px; 
  border-left: 4px solid var(--sky-azure);
}

.info-card-title {
  font-size: 18px;
   font-weight  :      600;
  color: var(--ocean-depth);
               margin-bottom: 12px; 
	
}

.info-card-text

{
  color: var(--smoke-gray);
  line-height: 1.6;
    margin-bottom: 16px;
 font-size: 15px;
}

.info-card-link {
  color: var(--sky-azure);
  text-decoration: none;
   font-weight: 600;
        transition: all 0.3s ease;
}

.info-card-link:hover {
  color: var(--ocean-depth);
}

.contact-reminder {
  background: var(--moonlight-silver);
   padding: 32px 28px;
  border-radius: 12px;
    margin-bottom: 45px;
}

.contact-reminder-title  {
   font-size: 22px;
   font-weight: 600;
  color: var(--ocean-depth);
  margin-bottom :    16px;
}

.contact-reminder-text {
  color: var(--smoke-gray);
   margin-bottom: 20px;
  line-height: 1.6;
}

.contact-details-quick {
    display: flex;
  flex-direction: column;
    gap: 12px;
    text-align: left;
}

.contact-quick-item {
   font-size: 16px;
  color: var(--smoke-gray);
}

.contact-quick-item a    {
  color: var(--sky-azure);
  text-decoration: none;
  font-weight: 600;
}

.contact-quick-item a:hover {
  color: var(--ocean-depth);
}

.return-actions {
  display: flex;
     gap: 21px;
    justify-content: center;
         flex-wrap :  wrap;
}

.primary-return-btn,
.secondary-return-btn {
    padding: 16px 32px;
		 text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
  font-size: 16px;
    transition: all 0.3s ease;}

.primary-return-btn {
  background: var(--sky-azure);
  color: var(--pearl-white);
  border: 2px solid var(--sky-azure);
}

.primary-return-btn:hover 
 {
     background: var(--ocean-depth);
  border-color: var(--ocean-depth);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.secondary-return-btn {
   background: transparent;
  color: var(--charcoal-shadow);
  border: 2px solid var(--charcoal-shadow);
}

.secondary-return-btn:hover
	{


  background: var(--charcoal-shadow);
  color: var(--pearl-white);
  transform: translateY(-2px);
     }

.policy-hero-section {
  padding: 89px 0 56px;
  background: linear-gradient(135deg, var(--warm-sand) 0%, var(--moonlight-silver) 100%);
}

.policy-container {
    max-width: 890px;
 margin: 0 auto;
   padding: 0 24px;
}

.policy-header-content {

  text-align   :       center;

}

.policy-main-heading {
  font-size: 45px;
   font-weight: 700;
  color: var(--ocean-depth);
   margin-bottom: 24px;
                    line-height: 1.2;
    letter-spacing: -0.02em;
}

.policy-intro {
    font-size: 19px;

  color: var(--smoke-gray);

 line-height: 1.7;

    margin-bottom: 28px;

    max-width    :       680px;

    margin-left: auto;

    margin-right:  auto;
}

.policy-updated {
  background: var(--sky-azure);
  color: var(--pearl-white);
  padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
   font-weight: 600;
    display: inline-block;

}

.policy-content-section {
   padding  : 67px 0 87px; 
	  background: var(--pearl-white);
}

.policy-content-container


{
  max-width: 890px;
  margin   :0 auto;
    padding:       0 24px;


}

.policy-text-content {
  background: var(--moonlight-silver);
  padding: 45px 38px;
         border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.policy-section {
   margin-bottom: 42px;
}

.policy-section:last-child {
               margin-bottom: 0;
}

.policy-section-title {
    font-size: 28px;
    font-weight: 600;
  color: var(--ocean-depth);
    margin-bottom:       20px;
  border-left: 4px solid var(--sky-azure);
   padding-left: 20px;
}

.policy-paragraph {
  font-size: 16px;
  color: var(--smoke-gray);
   line-height: 1.7;
  margin-bottom: 18px;
}

.cookies-types-list {
    display     :        flex;
   flex-direction: column;
   gap: 24px;
                    margin-top: 24px;

}

.cookie-type-item {
  background: var(--pearl-white);

	    padding :      24px 22px;

	    border-radius: 10px;

	  border-left: 4px solid var(--forest-emerald);

	   transition: all 0.3s ease;
}

.cookie-type-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(45, 83, 48, 0.12);
}

.cookie-type-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--ocean-depth);
  margin-bottom   :     12px;
}

.cookie-type-description {
	  color: var(--smoke-gray);

  line-height: 1.6;

    font-size: 15px;


}

.policy-purposes-list {
  list-style: none;
  margin-top: 20px;
}

.policy-purpose-item
{
    padding: 12px 0;
	 padding-left: 28px;
  color: var(--smoke-gray);
   position: relative;
  font-size: 15px;
                    line-height: 1.6;
}

.policy-purpose-item:before {
  content: '•';
   position: absolute;
          left: 8px;
  color: var(--sky-azure);
   font-weight: bold;
   font-size: 18px;
}

.policy-data-list {
    list-style: none;
      margin-top: 20px;
	display: flex;
  flex-direction: column;
   gap: 16px;
}

.policy-data-item {

	  background: var(--pearl-white);
   padding: 16px 20px;
    border-radius: 8px;
  color: var(--smoke-gray);
   font-size: 15px;
   line-height: 1.6;
  border-left: 3px solid var(--sunset-amber);
}

.processing-purposes {
    gap: 28px;
	    flex-direction:   column;
	    display   :        flex;
	  margin-top: 24px;
}

.purpose-item {
  background: var(--pearl-white);
    padding     :       28px 24px;
    border-radius: 12px;
       transition: all 0.3s ease;
   border: 2px solid transparent;
}

.purpose-item:hover  
  {

	  border-color: var(--sky-azure);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.12);

}

.purpose-heading {
    font-size: 20px;
  font-weight: 600;
  color: var(--ocean-depth);
  margin-bottom: 12px;
}

.purpose-description {
  color: var(--smoke-gray);
        line-height: 1.6;
                    font-size: 15px;
}