:root {
    --primary-color: #303994;
    --accent-color: #747abb;
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-color: #333;
    --font-family-headings: 'Inter', sans-serif;
    --font-family-body: 'Roboto', sans-serif;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

.main-nav .btn {
    color: var(--light-color) !important;
}

/* --- Pricing Hero --- */
.pricing-hero {
    background-color: var(--light-color);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 60px; /* Adjust for fixed header */
}

.pricing-hero h1 {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* --- Pricing Plans --- */
.pricing-plans {
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2rem;
    align-items: stretch; /* This will make the cards equal height */
}

.pricing-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card h2 {
    font-family: var(--font-family-headings);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-description {
    color: #666;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
    padding-left: 1rem;
    flex-grow: 1; /* Allows the list to grow and push the button down */
}

.features-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px;
}

.features-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* --- New Price Options --- */
.price-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-option {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    position: relative;
    background-color: #f9f9f9;
}

.price-option .price {
    font-size: 1.8rem;
}

.price-option .price-tenure {
    font-size: 0.9rem;
    color: #666;
}

.save-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(15deg);
}


/* --- Non-Profit CTA --- */
.non-profit-cta {
    background: var(--light-color);
    padding: 60px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cta-icon {
    color: var(--accent-color);
}

.cta-icon svg {
    width: 64px;
    height: 64px;
}

.cta-text {
    margin: 0 2rem;
}

.cta-text h2 {
    font-family: var(--font-family-headings);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        margin: 2rem 0;
    }

    .price-options {
        flex-direction: column;
    }
}
