
.directions-main {
    padding: 48px 0 64px;
}

.directions-hero {
    text-align: center;
}

.directions-hero-inner {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.directions-title {
    margin: 0;
    font-family: 'Alfa Slab One', 'Alfa Slab One Fallback', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color_1);
}

.directions-subtitle {
    margin: 0;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.5;
}

.directions-info {
    padding: 32px 0 72px;
    background: #f5f6f9;
}

.directions-info-inner {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.directions-card {
    background: var(--color_5);
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    padding: 24px 28px;
    display: grid;
    gap: 14px;
}

.directions-card h2 {
    margin: 0;
    font-family: 'Alfa Slab One', 'Alfa Slab One Fallback', serif;
    font-size: clamp(22px, 3vw, 28px);
    color: #2d3a86;
}

.directions-card p {
    margin: 0;
    line-height: 1.6;
}

.directions-address {
    font-weight: 600;
    color: #1f2758;
}

.directions-hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.directions-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.directions-buttons {
    display: grid;
    gap: 12px;
}

.directions-buttons .btn {
    width: 100%;
}

