:root {
    --second-family: 'Plus Jakarta Sans';
    --body-font: 'DM Sans', sans-serif;
    --text-950: #0f172a;
    --text-450: #64748b;
    --text-400: #94a3b8;
    --primary: #4dc0b5;
    --badge-bg: #d8f3e5;
}

.company-section {
    margin: 0 auto;
    background-color: #fff;
    max-width: 1420px;
    width: 100%;
    font-family: var(--body-font);
}

.company-content {
    padding: 64px 0;
    display: flex;
    gap: 96px;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.company-image {
    flex: none;
    width: 660px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: contain;
}

.company-info {
    flex: 1;
    max-width: 605px;
}

.info-badge {
    display: inline-block;
    background-color: var(--badge-bg);
    color: #292929;
    font-weight: 600;
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 5px;
    margin-bottom: 16px;
}

.company-title {
    font-family: var(--second-family);
    font-size: 42px;
    font-weight: 700;
    color: #292929;
    margin-bottom: 16px;
    line-height: 1.2;
}

.company-description {
    color: #161616;
    line-height: 1.6;
    margin-bottom: 24px;
}

.vision-title,
.mission-title {
    font-family: var(--second-family);
    color: #292929;
    font-weight: 600;
    font-size: 26px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.vision-description {
    color: #161616;
    line-height: 1.6;
}

.mission-list {
    color: #161616;
    line-height: 1.6;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.mission-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 18px;
    background-image: url('/about-image/checklist.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* ====== Breakpoints ====== */
@media (max-width: 1200px) {
    .wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .company-content {
        gap: 64px;
    }
    .company-image {
        width: 500px;
    }
}

@media (max-width: 992px) {
    .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .company-content {
        flex-direction: column;
        gap: 32px;
    }
    .company-image,
    .company-info {
        max-width: 100%;
    }

    .company-image img {
        max-width: 424px;
        height: 444px;
        object-fit: contain;
    }

    .company-title {
        font-family: var(--second-family);
        font-size: 32px;
        font-weight: 700;
        color: var(--text-950);
        margin-bottom: 16px;
    }

    .vision-title,
    .mission-title {
        font-family: var(--second-family);
        color: var(--text-950);
        font-weight: 600;
        font-size: 21px;
        margin-top: 24px;
        margin-bottom: 8px;
    }

    p {
        font-size: 16px;
        line-height: 1.6;
    }

    .mission-list li::before {
        top: 15px;
    }
}

@media (max-width: 768px) {
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 425px) {
    .wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }
    .company-content {
        gap: 24px;
    }

    .company-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .company-title {
        font-size: 32px;
        line-height: 1.3;
    }
    .vision-title,
    .mission-title {
        font-size: 21px;
    }
    p,
    .mission-list {
        font-size: 16px;
        line-height: 1.5;
    }
}
