@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:wght@100;200;300;400;500;600&display=swap');

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

body {
    font-family: 'Raleway', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.payment-plans-hero {
    position: relative;
    min-height: 400px;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
}

.hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 8vw, 60px);
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Payment Options Section */
.payment-options {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

.payment-options h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 300;
    color: #1d120b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-text {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.plan-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: #1d120b;
    margin-bottom: 25px;
    text-align: center;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.plan-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

.plan-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1d120b;
    font-weight: bold;
}

.plan-button {
    display: block;
    text-align: center;
    background-color: #1d120b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.plan-button:hover {
    background-color: #000;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 300;
    color: #1d120b;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1d120b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1d120b;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 300;
    color: #1d120b;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1d120b;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background-color: #1d120b;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cta-button.primary {
    background-color: white;
    color: #1d120b;
}

.cta-button.primary:hover {
    background-color: #f0f0f0;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #1d120b;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .payment-plans-hero {
        padding: 120px 20px 60px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-options,
    .how-it-works,
    .faq-section {
        padding: 60px 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .payment-options h2,
    .how-it-works h2,
    .faq-section h2,
    .cta-section h2 {
        font-size: 26px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .faq-item {
        padding: 20px;
    }
}