/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}


/* ===================================
   HERO SECTION
   =================================== */
.cap-about-hero-section {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.cap-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cap-about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

/* ===================================
   MAIN CONTENT SECTION
   =================================== */
.cap-content-section {
    padding: 60px 0 80px;
    background-color: #f8f9fa;
}

.cap-content-main {
    background-color: #ffffff;
    padding: 50px 60px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cap-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #4FA9B8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cap-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 25px;
    font-weight: 400;
}

.cap-body-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.cap-text-link {
    color: #2C6B7D;
    font-weight: 500;
    text-decoration: underline;
}

.cap-text-link:hover {
    color: #4FA9B8;
}

.cap-btn-primary {
    display: inline-block;
    background-color: #3D3D3D;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 3px;
    margin: 30px 0 40px;
    transition: all 0.3s ease;
}

.cap-btn-primary:hover {
    background-color: #2C6B7D;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cap-section-block {
    margin-bottom: 35px;
}

.cap-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2C6B7D;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.cap-member-badge {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.cap-badge-label {
    font-size: 12px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cap-ida-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cap-ida-logo svg {
    width: 80px;
    height: 60px;
}

.cap-ida-text {
    font-size: 11px;
    font-weight: 700;
    color: #6B2C91;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0;
}

/* ===================================
   SIDEBAR
   =================================== */
.cap-sidebar {
    background-color: #4FA9B8;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.cap-sidebar-header {
    background-color: #2C6B7D;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 25px;
}

.cap-sidebar-nav {
    display: flex;
    flex-direction: column;
}

.cap-sidebar-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.cap-sidebar-link:last-child {
    border-bottom: none;
}

.cap-sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding-left: 30px;
}

/* ===================================
   SUBSCRIBE SECTION
   =================================== */
.cap-subscribe-section {
    background-color: #4FA9B8;
    padding: 80px 0;
    text-align: center;
}

.cap-subscribe-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cap-subscribe-text {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cap-btn-subscribe {
    display: inline-block;
    background-color: #3D3D3D;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 50px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cap-btn-subscribe:hover {
    background-color: #2C6B7D;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 991px) {
    .cap-primary-nav {
        justify-content: center;
        margin-top: 20px;
        gap: 25px;
    }

    .cap-content-main {
        padding: 40px 30px;
    }

    .cap-sidebar {
        margin-top: 30px;
        position: static;
    }

    .cap-footer-brand {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cap-topnav-links {
        flex-direction: column;
    }

    .cap-topnav-link {
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .cap-logo-container {
        justify-content: center;
        margin-bottom: 20px;
    }

    .cap-primary-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cap-about-hero-section {
        height: 220px;
    }

    .cap-page-title {
        font-size: 24px;
    }

    .cap-content-main {
        padding: 30px 20px;
    }

    .cap-subscribe-title {
        font-size: 28px;
    }

    .cap-footer-brand {
        flex-direction: column;
        align-items: center;
    }

    .cap-footer-social {
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .cap-nav-item {
        font-size: 12px;
        gap: 10px;
    }

    .cap-page-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .cap-intro-text,
    .cap-body-text {
        font-size: 14px;
    }

    .cap-btn-primary {
        padding: 12px 24px;
        font-size: 12px;
    }
}