﻿/* Features Link Styles */
.features-link {
    text-align: center;
    margin-top: 3rem;
}

.features-link a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.features-link a:hover {
    color: var(--primary-purple);
}

/* Pricing Discount Link */
.pricing-discount {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
}

.pricing-discount a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pricing-discount a:hover {
    color: var(--primary-purple);
}

/* Pricing CTA (home page) */
.pricing-cta {
    background: var(--section-bg);
    padding: 100px 0;
    text-align: center;
    color: var(--text-dark);
}

.pricing-cta h2 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.pricing-cta .pricing-subtitle {
    margin-bottom: 1.5rem;
}

