/* Clean, Professional, Compliance-First Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2b6cb0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .subhead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.disclosure-badge {
    display: inline-block;
    background-color: #fed7d7;
    color: #9b2c2c;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid #feb2b2;
}

.cta-button {
    display: inline-block;
    background-color: #2b6cb0;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2c5aa0;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-section:nth-child(even) {
    background-color: #f8fafc;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
}

/* What You'll Learn */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.learn-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.learn-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.learn-item p {
    color: #4a5568;
}

/* Who It's For Section */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.audience-card {
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: left;
}

.audience-card.for {
    background-color: #f0fff4;
    border: 1px solid #9ae6b4;
}

.audience-card.not-for {
    background-color: #fffaf0;
    border: 1px solid #fbb6ce;
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.audience-card.for h3 {
    color: #276749;
}

.audience-card.not-for h3 {
    color: #9b2c2c;
}

/* What's Included */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.included-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.included-item .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.included-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
}

/* Instructor Section */
.instructor {
    background-color: #edf2f7;
    padding: 3rem 0;
}

.instructor-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Pricing */
.pricing {
    background: white;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid #2b6cb0;
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    background-color: #f8fafc;
    padding: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 1px solid #e2e8f0;
}

.faq-answer {
    padding: 1.5rem;
    color: #4a5568;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: #a0aec0;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e2e8f0;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.footer-disclosure {
    background-color: #fed7d7;
    color: #9b2c2c;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subhead {
        font-size: 1.125rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
