/* Parentals Home/Landing Page Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    color: white;
    padding: 100px 0;
}

/* Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4158D0;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* CTA Section */
.cta-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Dashboard Cards (for logged-in users) */
.dashboard-card {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.dashboard-card .card-text {
    color: #6c757d !important;
}
