    .contact-banner {
        color: #1f252c;
        background: #cfdfed;
    }

    .contact-banner-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        filter: none;
    }

    .contact-banner .inner {
        color: #1f252c;
        text-shadow: none;
    }

    .contact-banner h1 {
        color: #20242a;
    }

    .contact-banner p {
        color: #4f5a66;
        opacity: 1;
    }

    .contact-main {
        background: #f3f6f8;
    }

    .contact-wrapper {
        max-width: 980px;
        margin: 0 auto;
        background: #fff;
        border: 1px solid #e8edf1;
        padding: 46px 54px;
    }

    .company-header {
        text-align: center;
        margin-bottom: 36px;
        padding-bottom: 24px;
        border-bottom: 1px solid #e8edf1;
    }

    .company-header .logo-text {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: 25px;
        font-weight: 600;
        color: #1f364b;
    }

    .company-header .logo-text svg {
        width: 42px;
        height: 42px;
    }

    .contact-section {
        margin-bottom: 40px;
    }

    .section-title {
        text-align: left;
        font-size: 22px;
        border-bottom: 1px solid #cfe8e5;
        margin-bottom: 18px;
        padding-bottom: 10px;
        color: var(--primary);
    }

    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .contact-info-item {
        font-size: 14px;
        color: var(--text-light);
    }

    .contact-info-item strong {
        color: var(--text);
    }

    .address-text {
        font-size: 15px;
        margin-bottom: 16px;
        color: var(--text-light);
    }

    .map-container {
        position: relative;
        width: 100%;
        height: 410px;
        border: 1px solid #e5ebf0;
        overflow: hidden;
        background: #ecf2f6;
    }

    .map-container iframe,
    .map-container img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .map-container iframe {
        border: 0;
    }

    .map-container img {
        object-fit: cover;
        object-position: center center;
    }

    .map-empty {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 24px;
        text-align: center;
        color: #6f7b86;
        font-size: 14px;
        background: #f8fafb;
    }

    .message-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .message-form .full-row {
        grid-column: 1 / -1;
    }

    .message-form input,
    .message-form textarea {
        width: 100%;
        border: 1px solid #dce4eb;
        border-radius: 3px;
        padding: 12px 13px;
        font-size: 14px;
        font-family: inherit;
        color: var(--text);
    }

    .message-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    .message-form input:focus,
    .message-form textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0,168,159,.1);
    }

    .message-submit {
        border: 0;
        background: var(--primary);
        color: #fff;
        border-radius: 3px;
        padding: 10px 22px;
        cursor: pointer;
        font-size: 14px;
    }

    .message-submit:hover {
        background: var(--primary-dark);
    }

    .message-feedback {
        margin-top: 10px;
        min-height: 1.2em;
        font-size: 13px;
    }

    .message-feedback.success {
        color: #2e7d32;
    }

    .message-feedback.error {
        color: #c62828;
    }

    @media (max-width: 900px) {
        .contact-wrapper {
            padding: 30px 24px;
        }

        .contact-info-grid,
        .message-form {
            grid-template-columns: 1fr;
        }

        .map-container {
            height: 280px;
        }
    }
