/* womens-self-defense-class.css
   Custom styles for Women's Self-Defense Class page
   Feel free to adjust colors and fonts to match your brand.
*/

body {
    background: linear-gradient(135deg, #f7f7fa 0%, #e3e6f3 100%);
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    color: #22223b;
}

.hero-section {
    background: linear-gradient(120deg, #5f4bb6 60%, #43b0a5 100%);
    color: #fff;
    padding: 3rem 0 2rem 0;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 4px 24px rgba(95,75,182,0.10);
    text-align: center;
}
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.hero-section p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
}
.cta-btn {
    background: #43b0a5;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(67,176,165,0.10);
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
    background: #5f4bb6;
    color: #fff;
}

.section-title {
    color: #5f4bb6;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.card {
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(95,75,182,0.07);
    border: none;
}

footer {
    background: #22223b;
    color: #fff;
    border-radius: 2rem 2rem 0 0;
}
footer a {
    color: #43b0a5;
}
footer a:hover {
    color: #5f4bb6;
    text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
}
