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

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

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    color: #1a1a1a;
}

.hero-section .lead {
    color: #555;
}

.categories-section {
    padding: 80px 0;
}

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

.categories-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-section {
    padding: 80px 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.page-header {
    background: linear-gradient(135deg, #28a745 0%, #20893a 100%);
    color: white;
}

.page-header h1 {
    color: white;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    transform: translateY(-2px);
}

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

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.footer {
    border-top: 4px solid #28a745;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #28a745 !important;
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner a {
    color: #28a745;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #20893a;
}

.legal-content h2 {
    color: #28a745;
    margin-top: 30px;
}

.legal-content h4 {
    color: #333;
}

.legal-content ul {
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 15px;
}

.contact-info h5 {
    color: #28a745;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .categories-section,
    .info-section {
        padding: 40px 0;
    }
    
    .card-img-top {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}
