.location-hero-copy {
    color: #fff;
    font-size: 1.05rem;
    max-width: 780px;
    margin: 1rem auto 0;
}

.location-benefits {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    color: #212529;
}

.location-benefits li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
    line-height: 1.85;
    font-weight: 500;
}

.location-benefits li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: 900;
    font-size: 1rem;
}

.location-highlight-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border-left: 6px solid #a12c2f;
    box-shadow: 0 20px 40px rgba(13, 18, 28, 0.08);
    min-height: 100%;
}

.location-overview {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 2rem;
    padding: 2.25rem;
    border: 1px solid rgba(161, 44, 47, 0.08);
    box-shadow: 0 24px 60px rgba(13, 18, 28, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-overview h2 {
    margin-bottom: 1rem;
}

.location-overview .lead {
    max-width: 680px;
}

.location-quick-facts {
    height: 100%;
}

.location-highlight-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-quick-facts h4 {
    margin-bottom: 1.25rem;
}

.location-quick-fact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.location-quick-fact-item .label {
    font-weight: 700;
    min-width: 4rem;
}

.location-quick-fact-item .value {
    color: #4d4d4d;
    line-height: 1.6;
}

.location-highlight-card p {
    color: #4d4d4d;
    margin-bottom: 0.9rem;
}

.location-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
}

.location-highlight-card .btn {
    width: 100%;
}

.courses-in-city .course-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.course-box,
.feature-card,
.service-card {
    border-radius: 1.25rem;
    padding: 2rem;
    background: linear-gradient(135deg, #a12c2f, #cf5b4a);
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-box:hover,
.feature-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}

.course-box h5,
.feature-card h5,
.service-card h5 {
    color: #ffdd75;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.course-box p,
.feature-card p,
.service-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
}

.faq-section .accordions-custom {
    border-radius: 24px;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 22px 50px rgba(13, 18, 28, 0.08);
}

.faq-section .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-item:last-child {
    border-bottom: none;
}

.accordion-head-custom {
    padding: 1.35rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1f272b;
    cursor: pointer;
    background: #f8f9fa;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 200ms ease, color 200ms ease;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
}

.accordion-head-custom:hover {
    background: #eef2f5;
}

.accordion-head-custom.is-open {
    color: #fff;
    background: #a12c2f;
}

.accordion-head-custom .icon {
    transition: transform 200ms ease;
}

.accordion-head-custom.is-open .icon {
    transform: rotate(90deg);
}

.accordion-body-custom {
    overflow: hidden;
    max-height: 0;
    transition: max-height 300ms ease;
}

.accordion-body-custom.show {
    max-height: 700px;
}

.accordion-body-custom>.content {
    padding: 1.5rem;
}

.cta-panel {
    border-radius: 2rem;
    padding: 3rem;
    color: #fff;
    background: linear-gradient(135deg, #a12c2f, #3125e0);
}

.cta-panel h2 {
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .location-overview,
    .location-highlight-card {
        height: auto;
        padding: 1.75rem;
    }

    .location-quick-facts {
        position: static;
        margin-top: 1.5rem;
    }

    .location-contact-btn {
        width: 100%;
        min-width: 0;
    }

    .location-overview .lead,
    .location-quick-fact-item .value {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .location-overview,
    .location-highlight-card,
    .cta-panel {
        border-radius: 1.5rem;
        padding: 1.5rem;
    }

    .location-hero-copy {
        font-size: 0.98rem;
    }

    .location-benefits li {
        padding-left: 2rem;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }
}


.cta-panel p {
    margin-bottom: 1.5rem;
    opacity: 0.92;
}

.cta-panel .btn-light {
    color: #1f1f1f;
    font-weight: 700;
    min-width: 180px;
    margin-right: 1rem;
    margin-bottom: 0.75rem;
}

.location-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: .70rem 1.25rem;
    border-radius: 1rem;
    border: 0;
    background: #a12c2f;
    color: #fff;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    color: #fff;
}

.location-btn--secondary {
    background: #0b6b8c;
}

.location-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(161, 44, 47, 0.08);
    box-shadow: 0 18px 35px rgba(24, 32, 56, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(24, 32, 56, 0.1);
}

.location-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.location-card p {
    margin-bottom: 1.3rem;
    color: #59606d;
}

.location-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.location-summary p {
    max-width: 800px;
    margin: 0 auto;
    color: #6b7280;
}

.city-detail-page {
    background-image: url(../images/meetings-page-bg.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 15px;
    padding-bottom: 0;
}

@media (max-width: 767.98px) {
    .location-hero-copy {
        font-size: 1rem;
    }

    .cta-panel {
        padding: 2rem;
    }

    .city-heading-res {
        padding: 0 !important;
    }

    .location-overview .city-heading-res {
        margin-top: 0.75rem !important;
    }
}
