/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
    font-size: 16px;
}

a {
    color: #d32f2f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b71c1c;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2c2c2c;
    font-weight: 400;
    font-size: 1.75rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.nav-menu a:hover {
    color: #1f2937;
}

.cta-button {
    background: #d32f2f;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #fafafa;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 3.25rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.highlight {
    color: #d32f2f;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
    max-width: 800px;
}

.hero-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.detail-item i {
    color: #d32f2f;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.primary-button {
    background: #d32f2f;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.secondary-button {
    background: white;
    color: #2c2c2c;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.secondary-button:hover {
    border-color: #d32f2f;
    color: #d32f2f;
}

.early-bird-notice {
    color: #d32f2f;
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Sales Letter Section */
.sales-letter {
    padding: 80px 0;
    background: white;
}

.sales-letter-content {
    max-width: 700px;
    margin: 0 auto;
}

.sales-letter-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.3;
}

.sales-letter-content > p {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.sales-benefits {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sales-benefit {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.sales-benefit i {
    color: #d32f2f;
    font-size: 2rem;
    margin-top: 0.25rem;
}

.sales-benefit h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.sales-benefit p {
    color: #444;
    font-size: 1.125rem;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.sales-close {
    margin-top: 3rem;
    padding: 2rem;
    background: #fafafa;
    border-left: 4px solid #d32f2f;
    border-radius: 4px;
}

.sales-close p {
    font-size: 1.125rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.sales-close p strong {
    color: #2c2c2c;
    font-weight: 600;
}

.sales-close-cta {
    margin-top: 2rem;
    text-align: center;
}

.sales-close-cta .primary-button {
    display: inline-flex;
}

/* Who This Is For Section */
.who-for {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.who-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.who-icon {
    width: 80px;
    height: 80px;
    background: #d32f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.who-icon i {
    color: white;
    font-size: 2rem;
}

.who-card h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.who-card p {
    color: #666;
    line-height: 1.6;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Curriculum Section */
.curriculum {
    padding: 80px 0;
    background: #fafafa;
}

.curriculum-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d32f2f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.step-content h3 {
    color: #2c2c2c;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.step-content p {
    color: #666;
    font-size: 1.125rem;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.curriculum-close {
    margin-top: 3rem;
    text-align: center;
}

.curriculum-close p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

.curriculum-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.curriculum-cta .primary-button {
    display: inline-flex;
}

/* Included Section */
.included {
    padding: 80px 0;
    background: white;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.included-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.included-item i {
    color: #d32f2f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.included-item h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.included-item p {
    color: #666;
    line-height: 1.6;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: #fafafa;
}

.community-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.community-benefit {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #eee;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #d32f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.benefit-content h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.benefit-content p {
    color: #666;
    font-size: 1.125rem;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.about-text p {
    color: #666;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.bio-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.bio-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.bio-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.bio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
    padding: 0.75rem 1.5rem 1rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bio-info {
    margin-bottom: -.5rem;
    text-align: center;
}

.bio-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: -0.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #ffffff;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-header p {
    font-size: 1.125rem;
    color: #cccccc;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-card {
    background: #2a2a2a;
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid white;
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-badge {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    font-weight: 400;
    color: white;
    padding-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-note {
    color: #cccccc;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cccccc;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-feature i {
    color: #10b981;
    font-size: 1.125rem;
}

.pricing-button {
    width: 100%;
    justify-content: center;
    background: white;
    color: #1a1a1a;
    border: 2px solid white;
    margin-bottom: 1rem;
}

.pricing-button:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.pricing-deadline {
    color: #d32f2f;
    font-weight: 500;
    font-size: 0.875rem;
}

.pricing-info {
    text-align: center;
    color: #cccccc;
}

.pricing-info p {
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.pricing-info p strong {
    color: white;
}

.pricing-explanation {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.faq-item p {
    color: #666;
    font-size: 1.125rem;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: #fafafa;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cta-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cta-note {
    color: #d32f2f;
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .curriculum-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .community-benefit {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .pricing-amount {
        flex-direction: row;
    }
    
    .currency {
        padding-top: 0.75rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .sales-letter-content h2 {
        font-size: 2rem;
    }
    
    .sales-letter-content > p {
        font-size: 1.125rem;
    }
    
    .sales-benefit {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sales-benefit i {
        margin: 0 auto 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .sales-letter-content h2 {
        font-size: 1.75rem;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
}

