/* CSS Variables for easy theming */
:root {
    --color-primary: #667eea;
    --color-primary-dark: #5568d3;
    --color-secondary: #764ba2;
    --color-background: #f7fafc;
    --color-surface: #ffffff;
    --color-text: #333333;
    --color-text-light: #4a5568;
    --color-text-dark: #2d3748;
    --color-border: #e2e8f0;
    --color-error: #e53e3e;
    --color-success: #38a169;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-background);
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.hero p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background: var(--color-surface);
}

.services-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d3748;
}

.services-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2d3748;
    text-align: center;
}

.service-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--color-background);
    border-radius: 10px;
}

.service-description p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
    border-left: 4px solid var(--color-primary);
    padding-left: 1rem;
    background: var(--color-surface);
    border-radius: 5px;
}

.benefits-list strong {
    color: var(--color-primary);
}

/* How It Works Simple */
.how-it-works-simple {
    max-width: 900px;
    margin: 3rem auto;
}

.steps-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-simple {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 10px;
}

.step-number-simple {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-simple p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    max-width: 500px;
    margin: 3rem auto;
}

.price-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.price-features {
    list-style: none;
    padding: 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.price-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Payment Section */
.payment-section {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 10px;
}

.payment-instruction {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Legal Section */
.legal-section {
    padding: 3rem 0;
    background: #edf2f7;
}

.legal-section h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
}

.disclaimer-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-button.large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

/* Form Styles */
.form-section {
    padding: 3rem 0;
    background: var(--color-background);
    min-height: calc(100vh - 200px);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.form-intro {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.required {
    color: #e53e3e;
}

/* Messages */
.error-message,
.success-message,
.info-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.error-message {
    background: #fed7d7;
    color: #742a2a;
    border-left: 4px solid #e53e3e;
}

.success-message {
    background: #c6f6d5;
    color: #22543d;
    border-left: 4px solid #38a169;
}

.info-message {
    background: #bee3f8;
    color: #2c5282;
    border-left: 4px solid #3182ce;
}

.error-message h2,
.error-message h3,
.success-message h2,
.success-message h3 {
    margin-bottom: 0.75rem;
    color: inherit;
}

.success-message ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.success-message li {
    margin-bottom: 0.5rem;
}

.email-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #9ae6b4;
}

/* Info Box */
.info-box {
    background: #edf2f7;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
    color: #2d3748;
    line-height: 1.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services-section h2 {
        font-size: 1.6rem;
    }

    .services-section h3 {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }

    .steps-simple {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header h1 {
        font-size: 1.75rem;
    }

    .form-container {
        padding: 1.25rem;
    }

    .price-box {
        padding: 1.5rem;
    }
}
