/* =========================================
   WALK-IN PAGE STYLES
   ========================================= */

:root {
    --deep-blue: #2A4068;
    --primary-blue: #3E5C9A;
    --white: #ffffff;
}

/* --- Hero Section --- */
.hero-centered {
    background-color: var(--deep-blue);
    color: var(--white);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding-top: 40px;
    padding-bottom: 0px;
    text-align: center;
    overflow: hidden;
}

.hero-centered h1 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.hero-bg-overlay {
    display: none;
}

.hero-content-wrapper-center {
    z-index: 2;
    position: relative;
}

/* --- Content --- */
.walkin-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.walkin-section {
    margin-bottom: 40px;
}

.walkin-section:last-child {
    margin-bottom: 0;
}

.walkin-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.walkin-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
}

.walkin-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.walkin-link:hover {
    color: #2b6cb0;
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-centered {
        min-height: 200px;
        padding-top: 100px;
    }

    .walkin-container {
        margin: 30px 16px;
        padding: 24px 20px;
    }

    .walkin-section h2 {
        font-size: 1.5rem;
    }
}