/* About Hero Section */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: var(--tokens-background-white-bg);
}

.about-hero-container {
    display: flex;
    max-width: 1888px;
    width: 100%;
    gap: 16px;
}

.about-hero-image {
    position: relative;
    flex: 1;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.about-hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-hero-text {
    position: relative;
    z-index: 1;
    color: var(--tokens-text-light-text);
    font-family: var(--heading-lg-font-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.about-hero-content {
    flex: 1;
    background-color: var(--tokens-background-accent-strong-bg);
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}

.about-hero-title {
    color: var(--tokens-text-main-text);
    font-family: var(--heading-xl-font-family);
    font-size: 48px;
    font-weight: 500;
    line-height: normal;
}

.about-hero-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-hero-desc p {
    color: #4f4f4f;
    font-family: var(--body-base-font-family);
    font-size: 14px;
    line-height: 22px;
}

.about-logos-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    max-width: 50%;
    align-self: flex-end;
}

.about-logo-img {
    flex: 1;
    height: auto;
    max-width: 200px;
}

.about-logos-divider {
    width: 1px;
    height: 60px;
    background: var(--tokens-border-dark);
}

/* Why Section */
.why-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: var(--tokens-background-white-bg);
}

.why-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1888px;
    width: 100%;
    background-color: #f5f3ed;
    border-radius: 32px;
    padding: 96px 56px;
    gap: 56px;
}

.why-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    text-align: center;
}

.why-title {
    color: var(--tokens-text-main-text);
    font-family: var(--heading-xl-font-family);
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
}

.why-desc {
    color: var(--tokens-text-secondary-text);
    font-family: var(--body-base-font-family);
    font-size: 14px;
    line-height: 22px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    max-width: 1200px;
}

.why-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background-color: #fdfcfa;
    border-radius: 32px;
}

.why-card .icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background-color: var(--tokens-background-gray-bg);
    border-radius: 200px;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.why-card .text-wrapper-4 {
    color: var(--tokens-text-main-text);
    font-family: e-Ukraine;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.why-card .text-wrapper-5 {
    color: var(--tokens-text-secondary-text);
    font-family: e-Ukraine;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.why-card-large {
    grid-row: span 2;
    position: relative;
}

.why-card-large .logo-FIGHTER {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 218.087px;
    height: 65px;
    flex-shrink: 0;
}

.why-card-large .fighter-2 {
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: var(--tokens-background-white-bg);
}

.contact-container {
    position: relative;
    max-width: 1888px;
    width: 100%;
    height: 450px;
}

.contact-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    max-height: 428px;
    object-fit: cover;
    border-radius: 32px;
}

.contact-content {
    position: absolute;
    top: 48%;
    left: 74%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 944px;
    max-height: 420px;
    background-color: var(--tokens-background-accent-strong-bg);
    border-radius: 32px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.contact-header .label {
    align-self: flex-start;
}

.contact-title {
    color: var(--tokens-text-main-text);
    font-family: var(--heading-xl-font-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

.contact-desc {
    color: #4f4f4f;
    font-family: var(--body-base-font-family);
    font-size: 13px;
    line-height: 18px;
    text-align: left;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item .frame-4 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item .text-wrapper-4 {
    color: var(--tokens-text-main-text);
    font-family: e-Ukraine;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.contact-item .text-wrapper-8 {
    color: var(--tokens-text-secondary-text);
    font-family: e-Ukraine;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.contact-item .text-wrapper-8 a {
    color: inherit;
    text-decoration: none;
}

.contact-item .img-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background-color: var(--tokens-background-gray-bg);
    border-radius: 200px;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hero Section */
    .about-hero {
        padding: 12px;
    }

    .about-hero-container {
        flex-direction: column;
        gap: 12px;
    }

    .about-hero-image {
        height: 300px;
        padding: 24px;
    }

    .about-hero-text {
        font-size: 18px;
        line-height: 28px;
    }

    .about-hero-content {
        padding: 32px 24px;
        gap: 20px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-desc {
        gap: 12px;
    }

    .about-logos-container {
        max-width: 100%;
        justify-content: center;
        align-self: center;
    }

    /* Why Section */
    .why-section {
        padding: 12px;
    }

    .why-container {
        padding: 48px 24px;
        gap: 32px;
    }

    .why-title {
        font-size: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .why-card {
        padding: 20px;
    }

    .why-card-large {
        grid-row: span 1;
    }

    .why-card-large .logo-FIGHTER {
        width: 150px;
        height: 45px;
    }

    /* Contact Section */
    .contact-section {
        padding: 12px;
    }

    .contact-container {
        height: auto;
        min-height: 400px;
    }

    .contact-image {
        position: relative;
        height: 400px;
    }

    .contact-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: -80px;
        padding: 20px;
        gap: 10px;
    }

    .contact-title {
        font-size: 20px;
    }

    .contact-desc {
        font-size: 12px;
        line-height: 16px;
    }

    .contact-list {
        gap: 12px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-item .img-wrapper {
        width: 48px;
        height: 48px;
        padding: 12px;
    }

    .contact-item .text-wrapper-4 {
        font-size: 13px;
    }

    .contact-item .text-wrapper-8 {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-hero-image {
        height: 250px;
        padding: 20px;
    }

    .about-hero-text {
        font-size: 16px;
        line-height: 24px;
    }

    .about-hero-content {
        padding: 24px 20px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-logos-container {
        flex-direction: column;
        gap: 16px;
    }

    .about-logos-divider {
        width: 60px;
        height: 1px;
    }

    .why-container {
        padding: 32px 16px;
    }

    .why-title {
        font-size: 20px;
    }

    .contact-content {
        margin-top: -60px;
        padding: 16px;
    }

    .contact-title {
        font-size: 18px;
    }
}
