.company-page {
    background: #fff;
}

.company-breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 12px;
    color: #777;
}

.company-hero {
    background: #f5f5f5;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.company-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 20px;
}

.company-hero__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.company-hero__text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.company-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 20px;
}

.company-section {
    margin-bottom: 80px;
}

.company-section__title {
    font-size: 28px;
    font-weight: 700;
    padding-left: 16px;
    border-left: 4px solid #111;
    margin-bottom: 32px;
}

.company-message {
    display: flex;
    gap: 40px;
    padding: 40px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
}

.company-message__thumb {
    width: 140px;
    flex-shrink: 0;
}

.company-message__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.company-placeholder {
    width: 140px;
    height: 140px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #777;
}

.company-message__name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.company-message__role {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
}

.company-message__text {
    font-size: 15px;
    line-height: 2;
    color: #444;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    border: 1px solid #e5e5e5;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}

.company-table th {
    width: 28%;
    background: #f7f7f7;
    font-weight: 700;
}

.company-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.company-service-card {
    border: 1px solid #e5e5e5;
    padding: 32px 24px;
    text-align: center;
}

.company-service-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.company-service-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.company-service-card__text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.company-access {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
}

.company-access__map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.company-cta {
    padding: 56px 32px;
    border: 2px solid #111;
    text-align: center;
}

.company-cta__title {
    font-size: 32px;
    margin-bottom: 16px;
}

.company-cta__text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 32px;
}

.company-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.company-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 56px;
    padding: 0 24px;
    border: 2px solid #111;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.company-btn--primary {
    background: #111;
    color: #fff;
}

@media (max-width: 768px) {

    .company-hero__title {
        font-size: 28px;
    }

    .company-section {
        margin-bottom: 56px;
    }

    .company-message {
        flex-direction: column;
        padding: 24px;
    }

    .company-service-grid {
        grid-template-columns: 1fr;
    }

    .company-access {
        grid-template-columns: 1fr;
    }

    .company-cta {
        padding: 40px 20px;
    }

    .company-cta__buttons {
        flex-direction: column;
    }

    .company-btn {
        width: 100%;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
        border-bottom: none;
    }
}