:root {
    --primary-color: #008AE6;
    --light-primary-color: #E6F4FF;
    --secondary-color: #005999;
    --light-secondary-color: #CCE7FF;
    --tertiary-color: #B3D9FF;
    --dark-color: #31333A;
    --light-color: #FFFFFF;
    --grey-color: #BBC7D4;
    --light-dark-color: #727272;
    --light-grey-color: #f5f5f5;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    overflow-x: hidden;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-grey-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Announcement */
.top-announcement {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.announcement-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* Header & Navigation Styles */
.nav-container {
    padding: 10px 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-align {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-logo img {
    width: 130px;
}

/* Desktop Menu */
.nav-list {
    display: block;
}

.nav-list ul {
    display: flex;
    gap: 35px;
}

.nav-list ul li {
    list-style: none;
}

.nav-list ul li a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-color);
    transition: color 0.3s;
}

.nav-list ul li a:hover,
.nav-list ul li a.active {
    color: var(--primary-color);
}

/* Hamburger Button */
.hamburger {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--light-dark-color);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Hero Section */
.benefits-hero {
    background: linear-gradient(135deg, var(--light-primary-color) 0%, var(--light-grey-color) 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-dark-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat .label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-dark-color);
    font-weight: 600;
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Benefits Overview */
.benefits-overview {
    padding: 80px 0;
    background-color: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.overview-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--light-grey-color);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: var(--light-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
}

.overview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.overview-card p {
    color: var(--light-dark-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.overview-count {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Professional Benefits */
.professional-benefits {
    padding: 80px 0;
    background-color: var(--light-grey-color);
}

.benefits-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--light-dark-color);
    font-size: 1.1rem;
}

.section-badge {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card.detailed {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-card.detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--light-primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-header h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin: 0;
}

.benefit-content p {
    color: var(--light-dark-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefit-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.benefit-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-dark-color);
}

.benefit-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.benefit-stats {
    display: flex;
    gap: 20px;
}

.benefit-stats .stat {
    text-align: left;
}

.benefit-stats .value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.benefit-stats .label {
    font-size: 0.8rem;
    color: var(--light-dark-color);
    font-weight: 500;
}

/* Networking Benefits */
.networking-benefits {
    padding: 80px 0;
    background-color: white;
}

.networking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.networking-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.networking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.networking-image {
    height: 200px;
    overflow: hidden;
}

.networking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.networking-card:hover .networking-image img {
    transform: scale(1.05);
}

.networking-content {
    padding: 30px;
}

.networking-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.networking-content p {
    color: var(--light-dark-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.networking-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-dark-color);
    font-size: 0.9rem;
}

.feature i {
    color: var(--primary-color);
    width: 16px;
}



/* Career Benefits */
.career-benefits {
    padding: 80px 0;
    background-color: var(--light-grey-color);
}

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

.career-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-content p {
    color: var(--light-dark-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
    padding-left: 0;
}

.feature-content li {
    padding: 5px 0;
    color: var(--light-dark-color);
    position: relative;
    padding-left: 15px;
}

.feature-content li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.career-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.career-stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.career-stat .label {
    display: block;
    color: var(--light-dark-color);
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Financial Benefits */
.financial-benefits {
    padding: 80px 0;
    background-color: white;
}

.financial-header {
    text-align: center;
    margin-bottom: 50px;
}

.financial-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.financial-header p {
    color: var(--light-dark-color);
    font-size: 1.1rem;
}

.savings-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.savings-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.savings-amount {
    margin-bottom: 20px;
}

.savings-amount .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.savings-amount .amount {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 5px;
}

.savings-amount .period {
    font-size: 1rem;
    opacity: 0.8;
}

.savings-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.savings-card p {
    opacity: 0.9;
    line-height: 1.5;
}

.savings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--light-grey-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.savings-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.savings-info p {
    color: var(--light-dark-color);
    font-size: 0.9rem;
    margin: 0;
}

.savings-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Member Stories */
.member-stories {
    padding: 80px 0;
    background-color: var(--light-grey-color);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.story-content {
    font-style: italic;
    color: var(--light-dark-color);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
}

.story-content:before {
    content: "";
    font-size: 4rem;
    color: var(--light-primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--light-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--dark-color);
    margin-bottom: 2px;
}

.author-info span {
    color: var(--light-dark-color);
    font-size: 0.9rem;
}

.member-since {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.benefits-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.cta-features .feature i {
    font-size: 1.2rem;
}

.feature span{
    color: white;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-actions .btn {
    background: white;
    color: var(--primary-color);
}

.cta-actions .btn:hover {
    background: var(--light-grey-color);
}

.cta-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-actions .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.cta-note {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.cta-note p {
    margin: 0;
    opacity: 0.9;
}


/* Footer */


/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .benefits-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .savings-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-align {
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
        position: relative;
        left: 0;
        z-index: 101;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        z-index: 100;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-list.open {
        display: block;
    }

    .nav-list ul {
        display: block;
        width: 100%;
    }

    .nav-list ul li {
        border-bottom: 1px solid var(--light-grey-color);
        padding: 15px 0;
    }

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

    .nav-list ul li a {
        display: block;
        width: 100%;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .benefit-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-stats {
        justify-content: center;
    }
    
    .career-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        align-self: center;
    }
}