    .communication-section {
        background: #f9fafb;
    }

    .communication-wrapper {
        max-width: 1220px;
    }

    .communication-title {
        text-align: center;
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #111;
    }

    .communication-title h2 {
        font-weight: 800;
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }

    .communication-title p {
        color: #4b5563;
        max-width: 820px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .communication-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .communication-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 26px 20px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
        text-align: center;
        height: 100%;
    }

    .communication-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 2px solid #111;
        background: #f3f4f6;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        color: #111;
        margin-bottom: 16px;
    }

    .communication-card h3 {
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 14px;
        padding-bottom: 8px;
        border-bottom: 2px solid #e5e7eb;
    }

    .communication-card p {
        color: #333;
        line-height: 1.7;
        margin-bottom: 14px;
        font-size: 1rem;
    }

    .communication-card .highlight {
        font-weight: 700;
        color: #111;
    }

    .cities-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .city-tag {
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        border-radius: 999px;
        padding: 6px 12px;
        font-weight: 600;
        color: #111;
        font-size: 0.9rem;
    }

    .contact-methods {
        display: flex;
        justify-content: center;
        gap: 26px;
        flex-wrap: wrap;
        margin: 30px 0;
        padding-top: 24px;
        border-top: 1px solid #e5e7eb;
    }

    .contact-method {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #111;
    }

    .contact-label {
        font-weight: 700;
        color: #111;
    }

    .timeline-container {
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 26px;
        margin-top: 20px;
    }

    .timeline-title {
        text-align: center;
        font-weight: 800;
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .timeline {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        position: relative;
        padding: 16px 0;
    }

    .timeline::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: #c4c4c4;
    }

    .timeline-step {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        flex: 1;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid #111;
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: #111;
    }

    .step-label {
        font-weight: 700;
        color: #111;
        text-align: center;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .communication-title {
            border-bottom: none;
            margin-bottom: 2rem;
        }

        .timeline {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        .timeline::before {
            display: none;
        }

        .timeline-step {
            flex-direction: row;
            align-items: center;
        }

        .step-label {
            text-align: left;
        }
    }