:root {
    --primary-green: #006747;
    --primary-bg-light: #f8f9fa;
    --accent-gold: #daa521;
    --text-dark: #212529;
}

body {
    font-family: 'Segoe UI', 'Nikosh', system-ui, -apple-system, sans-serif;
    background-color: var(--primary-bg-light);
    color: var(--text-dark);
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.header-top {
    background-color: var(--primary-green);
    color: white;
    padding: 8px 0;
    font-size: 0.95rem;
}

.header-top a {
    color: white;
    text-decoration: none;
}

.header-top a:hover {
    text-decoration: underline;
}

.notice-bar {
    background-color: #ffc107;
    color: #000;
    padding: 12px 0;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-green);
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: calc(1.8rem + 1.5vw);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .lead {
    font-size: calc(1rem + 0.5vw);
    max-width: 800px;
    margin: 20px auto;
}

.stats-card {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.stats-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.smart-card-preview {
    background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--primary-green);
    color: #333;
    text-align: left;
}

.smart-card-preview .card-badge {
    background-color: var(--primary-green);
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.smart-card-preview .card-number {
    font-family: monospace;
    font-size: 1.3rem;
    letter-spacing: 2px;
    background: #eee;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.benefit-card, .news-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #dee2e6;
}

.benefit-card:hover, .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,103,71,0.15);
    border-color: var(--primary-green);
}

.section-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
}

.ad-placeholder {
    background: #e9ecef;
    border: 2px dashed #6c757d;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #6c757d;
    font-weight: 500;
}

.footer {
    background-color: #1a2e3c;
    color: rgba(255,255,255,0.8);
    padding: 30px 0;
    margin-top: 50px;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

/* Form Styles */
.form-control:focus, .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(0,103,71,0.25);
}

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

.btn-success:hover {
    background-color: #004d33;
    border-color: #004d33;
}

.card {
    border-radius: 15px;
    overflow: hidden;
}

.card-header {
    background-color: var(--primary-green) !important;
}

/* Accordion Styles */
.accordion-button:not(.collapsed) {
    background-color: rgba(0,103,71,0.1);
    color: var(--primary-green);
}

.accordion-button:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(0,103,71,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .stats-card h3 {
        font-size: 1.8rem;
    }
    
    .smart-card-preview {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .header-top {
        font-size: 0.8rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}