.hero-section {
    background: linear-gradient(135deg, #00a75d, #28a745, #007bff);
    color: #fff;
    padding: 70px 0 45px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 600;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: .95;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: #ffffff;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 42px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 600;
    color: #0a4f6d;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
}

.line {
    width: 70px;
    height: 3px;
    background: #00a75d;
    margin-bottom: 22px;
}

.branch-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.branch-summary-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(10, 79, 109, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.branch-summary-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #f4f6f9;
}

.branch-summary-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.branch-summary-body h3 {
    color: #0a4f6d;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.branch-summary-body p {
    color: #4d5f6b;
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
}

.branch-summary-body p i,
.branch-summary-body span i {
    color: #00a75d;
    margin-right: 6px;
}

.branch-summary-body span {
    color: #6c757d;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.branch-summary-link {
    color: #ffffff;
    background: linear-gradient(135deg, #00a75d, #28a745);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 167, 93, 0.24);
}

.branch-summary-link:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .branch-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 15px 45px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p,
    .section-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .branch-summary-grid {
        grid-template-columns: 1fr;
    }
}
