﻿.courier-hero {
    background: #f4faf9;
    padding: 70px 0;
}

.courier-hero__layout {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: 0.95fr 1.05fr;
}

.courier-hero__image img {
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(6, 47, 53, 0.18);
    display: block;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    width: 100%;
}

.courier-hero__content h1 {
    color: #062f35;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    margin: 10px 0 18px;
}

.courier-hero__content p,
.courier-feature p,
.courier-step-card p,
.courier-address-card p {
    color: #52666b;
    font-size: 16px;
    line-height: 1.7;
}

.courier-eyebrow {
    color:white;
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.courier-feature-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.courier-feature {
    background: #ffffff;
    border-left: 5px solid #0b6f79;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(6, 47, 53, 0.08);
    padding: 20px 22px;
}

    .courier-feature h3,
    .courier-step-card h3 {
        color: #062f35;
        font-size: 21px;
        margin: 0 0 8px;
    }

.courier-section {
    background: #ffffff;
    padding: 75px 0;
}

.section-title {
    margin: 0 auto 34px;
    max-width: 760px;
    text-align: center;
}

    .section-title h2 {
        color: #062f35;
        font-size: clamp(28px, 4vw, 44px);
        line-height: 1.15;
        margin: 10px 0 0;
    }

.courier-steps {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.courier-step-card {
    background: #ffffff;
    border: 1px solid rgba(11, 111, 121, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(6, 47, 53, 0.08);
    padding: 30px 24px;
    text-align: center;
}

.courier-step-number {
    align-items: center;
    background: #007AB8;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    font-size: 22px;
    font-weight: 800;
    height: 58px;
    justify-content: center;
    margin: 0 auto 18px;
    width: 58px;
}

.courier-address-section {
    background: #f4faf9;
    padding: 70px 0;
}

.courier-address-card {
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 18px;
    color: #ffffff;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 0.8fr;
    padding: clamp(28px, 5vw, 48px);
}

    .courier-address-card h2 {
        color: #ffffff;
        font-size: clamp(26px, 4vw, 42px);
        line-height: 1.15;
        margin: 10px 0 14px;
    }

    .courier-address-card p {
        color: #d6eef0;
        margin: 0;
    }

.courier-address {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    color: #ffffff;
    font-style: normal;
    line-height: 1.8;
    padding: 24px;
}

    .courier-address strong {
        color: #f5c85b;
        font-size: 20px;
    }

@media (max-width: 900px) {
    .courier-hero__layout,
    .courier-address-card {
        grid-template-columns: 1fr;
    }

    .courier-steps {
        grid-template-columns: 1fr;
    }

    .courier-hero {
        padding: 45px 0;
    }
}
