* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafdf7;
}

h1, h2, h3 {
    font-family: 'Arial Rounded MT Bold', system-ui, sans-serif;
    color: #2c3e50;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

#main-header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

#main-header .navbar-brand {
    font-size: 1.8rem;
    color: #7CFC00;
    font-weight: bold;
}

#main-header .navbar-brand:hover {
    color: #6acc00;
}

#main-header .nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 10px 20px;
    transition: color 0.4s ease;
}

#main-header .nav-link:hover {
    color: #7CFC00;
}

.navbar-toggler {
    border: 2px solid #7CFC00;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%237CFC00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    background: rgba(250, 253, 247, 0.95);
    border-radius: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    max-width: 800px;
}

.hero-content h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-content .lead {
    font-size: 1.4rem;
    color: #34495e;
    margin-bottom: 30px;
}

.btn-primary {
    background: #7CFC00;
    border: none;
    color: #2c3e50;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 3px 8px rgba(124, 252, 0, 0.3);
}

.btn-primary:hover {
    background: #6acc00;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(124, 252, 0, 0.4);
}

.btn-lg {
    padding: 15px 45px;
    font-size: 1.2rem;
}

.content-section {
    padding: 120px 0;
}

.content-section.bg-light {
    background: #f0f8e8;
}

.img-fluid {
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(124, 252, 0, 0.2);
}

.info-card h3 {
    color: #7CFC00;
    margin-bottom: 20px;
}

.table {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.table thead {
    background: #7CFC00;
    color: #2c3e50;
}

.table thead th {
    border: none;
    padding: 15px;
    font-weight: 600;
}

.table tbody td {
    padding: 12px 15px;
}

.accordion .card {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.accordion .card-header {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
}

.accordion .btn-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 20px;
    width: 100%;
    text-align: left;
}

.accordion .btn-link:hover {
    color: #7CFC00;
}

.accordion .card-body {
    padding: 20px;
    background: #fafdf7;
}

.question-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
}

.question-box h3 {
    color: #7CFC00;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.disclaimer-box {
    background: #fff9e6;
    border-left: 5px solid #7CFC00;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.disclaimer-box h2 {
    color: #2c3e50;
    margin-bottom: 25px;
}

.disclaimer-box p {
    margin-bottom: 20px;
}

.contact-info {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #7CFC00;
    box-shadow: 0 0 0 0.2rem rgba(124, 252, 0, 0.25);
}

.site-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.site-footer h3 {
    color: #7CFC00;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7CFC00;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner .btn-primary {
    background: #7CFC00;
    color: #2c3e50;
}

.modal-header {
    background: #f0f8e8;
    border-bottom: 2px solid #7CFC00;
}

.modal-title {
    color: #2c3e50;
}

.modal-body h3 {
    color: #7CFC00;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .content-section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .cookie-banner .text-right {
        text-align: center !important;
        margin-top: 15px;
    }
}
