@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    --primary-color: #002cbe;
    --secondary-color: #6366f1;
    --background-color: #e6f7ff;
    --card-background: #ffffff;
    --text-color: #333333;
    --feature-icon-color: #fbbf24;
    --premium-banner-color: #ffea00;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 0px 20px 20px 20px;
    box-sizing: border-box;
}

h1 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
}

.subscription-card {
    background-color: var(--card-background);
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.plan-name {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--premium-banner-color);
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stripe-button {
    width: 100%;
    max-width: 300px;
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.stripe-button img {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 0 auto 10px;
}

.stripe-button .price {
    color: white;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stripe-button .subscribe-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.stripe-button .subscribe-btn:hover {
    background-color: #4f46e5;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.payment-methods img {
    height: 20px;
}

.features {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.features li {
    /* margin-bottom: 15px; */
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-size: x-large;
}

.features li::before {
    margin-right: 10px;
    color: var(--feature-icon-color);
    font-size: 1.2em;
}

#sign-in-to-purchase {
    font-size: xx-large;
    margin-bottom: 0;
    text-align: center;
}

.googleSignInButton {
    font-size: x-large;
    margin-left: 0;
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    .card-header {
        padding: 15px;
    }

    .plan-name {
        font-size: 36px;
    }

    .plan-price {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 15px;
    }

    .stripe-button {
        padding: 15px;
    }

    .features li {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

