/* Custom Green/Light Theme Styles */
:root {
    --bs-success: #28a745;
    --bs-success-rgb: 40, 167, 69;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.accordion-button:not(.collapsed) {
    background-color: #e9f7ef;
    color: #198754;
}

.btn-success {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}

.text-success {
    color: var(--bs-success) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto !important;
        padding: 80px 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}
