/* ============================================
   SUBPAGE SHARED STYLES
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --page-bg-light: #f8f9fa;
    --text-muted: #666;
    --accent-teal: #57adb3;
    --header-teal-start: rgba(87,173,179,1);
    --header-teal-end: rgba(87,173,179,0.8);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    padding: 40px 0 120px 0;
    overflow: hidden;
    background: var(--primary-color);
}

.page-header h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 300;
    color: white;
}

/* ============================================
   MAIN CONTENT SECTION
   ============================================ */
.main-content-section {
    position: relative;
    z-index: 1;
    margin-top: -80px;
    padding: 80px 40px;
    background-color: var(--page-bg-light);
}

.main-content-section h3 {
    color: var(--primary-color);
}

.main-content-section .row {
    min-height: 400px;
    padding-top: 40px;
}

.content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.content-column h1 {
    margin-bottom: 1.5rem;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.content-column .highlight-text {
    color: var(--primary-color);
}

.content-column p {
    max-width: 500px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: left;
}

.image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-column img {
    max-width: 100%;
    width: 80%;
    height: auto;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(20,175,165,0.13);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 767px) {
    .page-header h1 {
        font-size: 32px;
    }

    .content-column h1 {
        font-size: 28px;
    }

    .main-content-section {
        margin-top: -60px;
        padding: 40px 20px;
        border-radius: 12px;
    }

    .main-content-section .row {
        min-height: auto;
    }
}
