/* Pricing Card Styles */
.pricing-section {
    background-color: #F9F7F4;
    padding: 60px 0;
}

.pricing-section .section-title {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.pricing-section .section-subtitle {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #555;
    margin-bottom: 10px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.pricing-card h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d4ed8;
}

.pricing-card h4 span {
    font-size: 16px;
    font-weight: 400;
    color: #777;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card .plan-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.pricing-card .btn {
    padding: 10px 20px;
    background-color: #1d4ed8;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
}

.pricing-card .btn:hover {
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 15px;
    }

    .pricing-card {
        padding: 20px;
    }
}
