/* Section 7: Who Should Join Styles */
.audience-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 40px 20px;
}

.audience-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 1rem;
    color: #616161;
    font-weight: 500;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.audience-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(63, 81, 181, 0.3);
}

/* Card Icon */
.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.audience-card p {
    font-size: 0.9rem;
    color: #616161;
    line-height: 1.5;
    margin: 0;
}

/* Bottom Note */
.bottom-note {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.25);
}

.bottom-note p {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .audience-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 20px;
    }

    .audience-container {
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .audience-grid {
        gap: 1.2rem;
    }

    .audience-card {
        padding: 1.5rem 1.2rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon svg {
        width: 26px;
        height: 26px;
    }

    .audience-card h3 {
        font-size: 1rem;
    }

    .audience-card p {
        font-size: 0.85rem;
    }

    .bottom-note {
        padding: 1rem 1.5rem;
    }

    .bottom-note p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .audience-section {
        padding: 40px 20px;
    }

    .audience-container {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

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

    .section-header .subtitle {
        font-size: 0.9rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .audience-card {
        padding: 1.3rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

    .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .audience-card h3 {
        font-size: 0.95rem;
    }

    .audience-card p {
        font-size: 0.8rem;
    }

    .bottom-note {
        padding: 1rem 1.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .bottom-note p {
        font-size: 0.85rem;
    }
}
