/* pricing.css */

:root {
    --primary-color: #4a90e2;
    --secondary-color: #50e3c2;
    --text-color: #333;
    --background-color: rgba(255, 255, 255, 0.95);
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: url('pricing.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    line-height: 1.6;
}

.fc-pricing-header {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(80, 227, 194, 0.9));
    padding: 40px 15%;
    text-align: center;
    color: white;
}

.fc-header-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.fc-header-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.fc-pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 15%;
    margin: 0 auto;
}

.fc-pricing-column {
    background-color: var(--background-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fc-pricing-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.fc-pricing-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.fc-pricing-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.fc-pricing-duration {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.fc-vip-description {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.fc-features-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.fc-features-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
    min-height: 1.5em;
}

.fc-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.fc-feature-category {
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.fc-cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    align-self: center;
    margin-top: auto;
}

.fc-cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.fc-free-plan {
    border-top: 5px solid var(--primary-color);
}

.fc-vip-plan {
    border-top: 5px solid var(--secondary-color);
}

@media (max-width: 1200px) {
    .fc-pricing-container {
        padding: 40px 10%;
    }
}

@media (max-width: 1024px) {
    .fc-pricing-container {
        flex-direction: column;
        align-items: center;
        padding: 40px 5%;
    }

    .fc-pricing-column {
        width: 100%;
        max-width: 500px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .fc-pricing-header {
        padding: 30px 5%;
    }

    .fc-header-title {
        font-size: 2rem;
    }

    .fc-header-description {
        font-size: 1rem;
    }

    .fc-pricing-title {
        font-size: 1.8rem;
    }

    .fc-pricing-price {
        font-size: 1.8rem;
    }

    .fc-pricing-duration {
        font-size: 1.1rem;
    }

    .fc-features-list li {
        font-size: 0.9rem;
    }

    .fc-feature-category {
        font-size: 1rem;
    }

    .fc-cta-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}