/* CSS Variables for Vivacare Color Scheme */
:root {
    /* Brand */
    /* Match logo color */
    --vivacare-primary: #005F6A;
    --vivacare-primary-dark: #004a53;
    --vivacare-primary-light: #0a7a86;

    /* Light Theme (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f1f5f9;
    --surface: #ffffff;
    --text-primary: #005F6A;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --ring: rgba(0, 95, 106, 0.2);
    --shadow-color: rgba(15, 23, 42, 0.12);
    --shadow-light: rgba(15, 23, 42, 0.08);
    --shadow-strong: rgba(15, 23, 42, 0.16);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="subtle-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(0, 95, 106, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-pattern)"/></svg>');
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Container for public pages */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Hero Section - Default banner for public pages (hem_exempel.png style) */
.hero-section {
    padding: 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    background-image: url('/images/hem_banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 36, 40, 0.88) 0%,
        rgba(0, 36, 40, 0.70) 42%,
        rgba(0, 36, 40, 0.00) 78%
    );
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 40px;
    position: relative;
    z-index: 1;
    text-align: left;
    box-sizing: border-box;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-weight: 400;
    text-align: left;
}

.hero-section .hero-title,
.hero-section .hero-subtitle {
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

/* Home hero banner (hem_exempel.png) */
body.hem .hero-section.home-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    text-align: left;
}

body.hem .hero-section.home-hero .hero-container {
    padding: 72px 40px;
    box-sizing: border-box;
    width: 100%;
}

body.hem .home-hero-content,
.hero-section.home-hero .home-hero-content {
    max-width: 100%;
    text-align: left;
}

body.hem .hero-section.home-hero .hero-subtitle,
.hero-section.home-hero .hero-subtitle {
    opacity: 0.95;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 22px;
}

body.hem .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 18px;
}

body.hem .home-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: rgba(0, 95, 106, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

body.hem .home-hero-btn:hover {
    background: rgba(0, 95, 106, 0.92);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.30);
}

body.hem .home-hero-btn-secondary {
    background: rgba(0, 95, 106, 0.64);
}

body.hem .home-hero-contact,
.hero-section.home-hero .home-hero-contact {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    display: grid;
    gap: 6px;
    margin-top: 10px;
}

body.hem .home-hero-email,
.hero-section.home-hero .home-hero-email {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    margin-top: 10px;
}

body.hem .home-hero-email a,
.hero-section.home-hero .home-hero-email a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

body.hem .home-hero-email a:hover,
.hero-section.home-hero .home-hero-email a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

body.hem .home-hero-contact a,
.hero-section.home-hero .home-hero-contact a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

body.hem .home-hero-contact a:hover,
.hero-section.home-hero .home-hero-contact a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

/* Hero two-column address grid (e.g. handläggare) */
.home-hero-contact-grid {
    display: flex;
    gap: 80px;
    margin-top: 30px;
    text-align: left;
}

.home-hero-contact-second {
    padding-left: 20px;
}

@media (max-width: 768px) {
    body.hem .hero-section.home-hero {
        min-height: 520px;
    }

    body.hem .hero-section.home-hero .hero-container {
        padding: 56px 20px;
    }

    body.hem .home-hero-btn {
        width: 100%;
        white-space: normal;
        text-align: left;
        justify-content: flex-start;
    }
}

/* Content Section */
.content-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-primary);
}

.content-wrapper h2 {
    color: var(--vivacare-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
    letter-spacing: -0.02em;
}

.content-wrapper p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: left;
}

.content-wrapper {
    width: 100%;
}

/* Contact Section */
.contact-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
    padding: 0 20px;
}

/* Kontakt: "Skriv till oss" */
.contact-message-section {
    margin-top: 50px;
    background-color: #f8fafc; /* Same as footer */
    padding: 60px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.contact-message-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-message-section h2 {
    text-align: left;
    color: var(--vivacare-primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-message-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-color);
    width: 100%;
    margin: 0;
}

.contact-message-card textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 1rem;
    resize: vertical;
    min-height: 140px;
    outline: none;
}

.contact-message-card input {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 1rem;
    outline: none;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.contact-message-form {
    display: grid;
    gap: 14px;
}

.contact-message-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-message-field.full-width {
    grid-column: 1 / -1;
}

.contact-message-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-message-card textarea:focus {
    border-color: var(--vivacare-primary);
    box-shadow: 0 0 0 3px var(--ring);
}

.contact-message-card input:focus {
    border-color: var(--vivacare-primary);
    box-shadow: 0 0 0 3px var(--ring);
}

.contact-message-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.contact-message-btn {
    background: var(--vivacare-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-message-btn:hover {
    background: var(--vivacare-primary-dark);
}

.contact-message-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-message-status {
    margin-top: 10px;
    font-weight: 600;
}

.contact-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-color);
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 16px 40px var(--shadow-strong);
}


.contact-card h3 {
    color: var(--vivacare-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

/* Staff Section */
.staff-section {
    margin-top: 60px;
}

.staff-section h2 {
    text-align: left;
    color: var(--vivacare-primary);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.staff-avatar {
    border-radius: 12px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* Home 3-column row */
body.hem .home-three-col {
    padding: 60px 0 80px 0;
    background: var(--bg-primary);
}

body.hem .home-three-item .home-three-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
    border: 1px solid var(--border-color);
    margin-bottom: 18px;
}

body.hem .home-three-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px;
    padding: 0;
    box-sizing: border-box;
}

body.hem .home-three-item h3 {
    color: var(--vivacare-primary);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

body.hem .home-three-item p {
    color: #0f172a;
    opacity: 0.82;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

body.hem .home-three-item .service-link {
    font-weight: 700;
}

@media (max-width: 900px) {
    body.hem .home-three-item .home-three-image {
        height: 180px;
    }

    body.hem .home-three-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }
}

/* HVB Section */
.hvb-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-primary);
}

.content-wrapper {
    width: 100%;
}

.hvb-section h2 {
    color: var(--vivacare-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.hvb-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* Services Section */
.services-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-primary);
}

.section-title {
    color: var(--vivacare-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: var(--surface);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-light);
    margin-bottom: 30px;
}

.service-card h3 {
    color: var(--vivacare-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--vivacare-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.service-link:hover {
    color: var(--vivacare-primary-dark);
    transform: translateX(4px);
}

/* About Preview Section */
.about-preview-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-secondary);
}

/* Hem: keep this section white (requested) */
body.hem .about-preview-section {
    background-color: var(--bg-primary);
}

/* Hem: left-align about preview block like the rest of the page */
body.hem .about-text, 
body.hem .image-wrapper {
    width: 100%;
}

body.hem .about-text,
body.hem .about-header {
    text-align: left;
}

.about-preview-section .container {
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text, .image-wrapper {
    width: 100%;
}

.about-text {
    text-align: left;
}

.about-header {
    text-align: left;
    margin-bottom: 24px;
}

.about-text h2 {
    color: var(--vivacare-primary);
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    text-align: left;
}

.inline-logo {
    width: 80px;
    height: auto;
    opacity: 0.8;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.group-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.about-image {
    text-align: center;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.about-main {
    width: 100%;
}

.about-main h2 {
    color: var(--vivacare-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
    width: 100%;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-sidebar {
    max-width: 350px;
}

.info-card {
    background: var(--surface);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-light);
    margin-bottom: 30px;
}

.info-card h3 {
    color: var(--vivacare-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li:before {
    content: "✓";
    color: var(--vivacare-primary);
    font-weight: bold;
    margin-right: 12px;
}

/* Simple check-list (used on familjehem page main column) */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.benefits-list li {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:before {
    content: "✓";
    color: var(--vivacare-primary);
    font-weight: 800;
    margin-right: 12px;
}

/* Map Section */
.map-section {
    margin-top: 60px;
    text-align: center;
}

.map-section h2 {
    color: var(--vivacare-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Values Intro and Conclusion */
.values-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 0 60px 0;
}

.values-intro h2 {
    color: var(--vivacare-primary);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: left;
}

.values-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
}

.values-conclusion {
    text-align: left;
    width: 100%;
    margin: 60px 0 0 0;
    padding-top: 40px;
    border-top: none;
}

.values-conclusion p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: left;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.values-section h2 {
    color: var(--vivacare-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

/* Values Detailed list (used on vardegrund) */
.values-detailed {
    margin: 40px 0;
    background-color: #f8fafc; /* Same as footer */
    padding: 60px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.values-detailed .benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.value-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--vivacare-primary);
    border-radius: 0; /* straight top/bottom on the left accent */
}

.value-item h3 {
    color: var(--vivacare-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.value-card {
    background: var(--surface);
    padding: 36px 28px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px var(--shadow-light);
    text-align: center;
    transition: box-shadow 0.2s ease;
    border-top: 4px solid var(--vivacare-primary);
}

.value-card:hover {
    box-shadow: 0 12px 28px var(--shadow-color);
}

.value-card h3 {
    color: var(--vivacare-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .about-preview-section .container {
        padding: 0 20px;
    }

    .hero-container {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }


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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .service-card {
        padding: 24px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-header {
        text-align: left;
    }

    .inline-logo {
        width: 60px;
        align-self: flex-end;
    }

    .image-wrapper {
        float: none;
        margin: 20px 0;
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .group-image {
        width: 100%;
        height: 400px;
        margin: 0 auto;
    }

    .building-showcase-image {
        height: 200px;
    }

    .building-overlay {
        padding: 30px 20px 20px;
    }

    .building-overlay h3 {
        font-size: 1.25rem;
    }

    .map-section h2 {
        font-size: 1.75rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .info-card {
        padding: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-hero-contact-grid {
        flex-direction: column;
        gap: 24px;
    }

    .home-hero-contact-second {
        padding-left: 0;
    }

    .contact-message-fields {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-message-section .container {
        padding: 0 20px;
    }

    .contact-message-card {
        padding: 24px 20px;
    }

    .contact-message-section {
        padding: 40px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .public-modal-content {
        margin: 10% auto;
        width: 95%;
        max-width: 400px;
    }

    .public-modal-header {
        padding: 20px 25px;
    }

    .public-modal-body {
        padding: 25px;
    }

    .welcome-content h1 {
        font-size: 2rem;
    }

    .user-avatar-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

    .profile-info {
        flex-direction: column;
        text-align: center;
    }
}

/* Building Showcase */
.building-showcase {
    margin-top: 60px;
    width: 100%;
}

.building-showcase h2 {
    color: var(--vivacare-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
}

.building-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.building-showcase-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.building-overlay {
    background: rgba(0, 36, 40, 0.75);
    color: #fff;
    padding: 20px 30px;
    width: 100%;
}

.building-overlay p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 480px) {
    .hero-container {
        padding: 20px 20px;
        margin: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .content-wrapper h2,
    .values-section h2 {
        font-size: 2rem;
    }
}
