:root {
    --primary-color: #1a237e;
    --secondary-color: #ff9800;
    --accent-color: #4fc3f7;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.news-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.news-card:hover {
    transform: translateY(-3px);
}

.info-box {
    padding: 2rem 1rem;
}

.info-box i {
    color: var(--primary-color);
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .info-box {
        margin-bottom: 1rem;
    }
}

/* Admin Styles */
.sidebar {
    min-height: 100vh;
    background-color: #343a40;
}

.sidebar .nav-link {
    color: #fff;
    padding: 0.75rem 1rem;
}

.sidebar .nav-link:hover {
    background-color: #495057;
}

.sidebar .nav-link.active {
    background-color: #007bff;
}