body {
    background: white !important;
    font-family: 'Inter', sans-serif !important;
    color: #16242C !important;
    overflow-x: hidden;
}

.main-content-container {
    max-width: 1180px;
    width: 100%;
    margin: 0px auto 100px;
}

@media (max-width: 767.98px) {
    .main-content-container {
        max-width: none;
        width: 100%;
        padding: 16px;
        margin-bottom: 40px;
    }
}

.hero-section {
  padding: 0 0 80px 0;
}

.hero-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-image-wrapper {
    flex-shrink: 0;
}

.section-label {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1.2px;
    color: #717182;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 70px;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mobile-br {
    display: none;
}

.hero-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    color: #717182;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.hero-text div {
    margin-bottom: 30px;
}

.hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: auto;
    max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}


.mission-title {
  font-size: 46px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 30px;
  text-align: center;
}

.mission-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #717182;
  text-align: center;
  margin-bottom: 70px;
}

.feature-card {
  text-align: center;
  padding: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
}

.icon-heart {
  background-color: #ffe5f0;
  color: #ff4d8f;
}

.icon-shield {
  background-color: #e5f3ff;
  color: #4d9fff;
}

.icon-people {
  background-color: #e5fff5;
  color: var(--accent-color);
}

.feature-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.feature-text {
  color: #717182;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.testimonial-section {
  padding: 100px 0 80px 0;
}

.testimonial-row {
  display: flex;
  align-items: center;
  gap: 260px;
}

.testimonial-content {
  flex: 1;
  min-width: 0;
}

.testimonial-image-wrapper {
  flex-shrink: 0;
}

.testimonial-card {
  background: transparent;
  padding: 0;
  border-left: none;
  position: relative;
  padding-left: 60px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  left: 25px;
  top: -5px;
  font-size: 40px;
  color: #717182;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  left: 45px;
  top: 0px;
  width: 8px;
  bottom: 0px;
  background-color: #D9D9D9;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 18px;
  margin-left: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.testimonial-author {
  font-weight: 400;
  color: #000000;
  margin-bottom: 5px;
  font-size: 20px;
  padding-left: 70px;
}

.testimonial-role {
  color: #717182;
  font-size: 18px;
  font-weight: 400;
  padding-left: 70px;
}

.testimonial-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  border: 3px solid var(--accent-color);
  width: auto;
  max-width: 400px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-section {
  padding: 62px 0;
  background-color: #f9fafb;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-title {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1C1C1C;
}

.final-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #364153;
  font-weight: 500;
}

.final-btn {
  background-color: #1a1a2e;
  color: #FFFFFF !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  text-decoration: none;
  height: 66px;
  width: 268px;
}

.final-btn:hover {
  background-color: #2a2a3e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media(max-width: 1024px) {
    .hero-section .container, .mission-section .container, .testimonial-section .container {
        margin: 0 auto !important;
    }

    .testimonial-row {
        gap: 50px;
    }
}

@media (max-width:992px) {
    .desktop-br {
        display: none;
    }

    .header-col-center {
        display: none;
    }

    .language-toggle {
        display: none;
    }

    .hero-section {
        padding: 0;
    }

    .hero-row {
        flex-direction: column;
        gap: 20px;
    }

    .hero-image-wrapper {
        width: 100%;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-text div {
        margin-bottom: 10px;
    }

    .mission-section {
        padding: 40px 0 0 0;
    }

    .mission-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .mission-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .feature-card {
        padding: 0;
        margin-bottom: 0;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .feature-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .testimonial-section {
        padding: 50px 0 0 0;
    }

    .testimonial-row {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-card {
        padding-left: 30px;
        margin-bottom: 0;
    }

    .testimonial-card::before {
        left: 0px;
        top: -5px;
        font-size: 40px;
    }

    .testimonial-card::after {
        position: absolute;
        left: 20px;
        top: 0px;
        width: 3px;
        bottom: 0px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-left: 0px;
        margin-bottom: 9px;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
    }

    .testimonial-author {
        margin-bottom: 3px;
        font-size: 14px;
        padding-left: 30px;
    }

    .testimonial-role {
        font-size: 14px;
        padding-left: 30px;
    }

    .testimonial-image-wrapper {
        width: 100%;
    }

    .testimonial-image {
        /*max-width: 100%;*/
        max-height: 400px;
        margin: 0 auto;
    }

    .final-section {
        margin-top: 40px;
        padding: 40px 0 0 0;
    }

    .final-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .final-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .final-btn {
        font-size: 14px;
        height: 56px;
        margin-bottom: 40px;
    }


    .section-label {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
