/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section .card {
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.pricing-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.pricing-section .card-header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 1.25rem;
}

.pricing-card-title {
    font-size: 2.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Call to action buttons */
.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Form Controls */
.form-control {
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .pricing-card-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
}
