* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    padding-top: 65px;
    background-color: #ffffff;
}

header {
    background-color: #e74c3c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    margin: 0 12px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffffff;
}

.hero-area {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-image: url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.88), rgba(192, 57, 43, 0.85));
}

.hero-container {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.content-area {
    padding: 4.5rem 0;
}

.bg-alt {
    background-color: #f5f5f5;
}

.section-heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.2rem;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.8rem;
}

.info-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.content-area h3 {
    color: #e74c3c;
    font-size: 1.9rem;
    margin-bottom: 1.3rem;
    font-weight: 600;
}

.content-area h4 {
    color: #c0392b;
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.content-area p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}

.card-item {
    background: white;
    padding: 2.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #e74c3c;
}

.card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #c0392b;
    height: 100%;
}

.disclaimer-section {
    background-color: #fff8e1;
}

.disclaimer-wrapper {
    background: white;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 2.2rem;
}

.disclaimer-wrapper p {
    margin-bottom: 1.3rem;
}

.disclaimer-wrapper strong {
    color: #856404;
}

.cta-area {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.cta-area h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-area p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #e74c3c;
    padding: 13px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 7px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #c0392b;
    text-decoration: none;
}

.main-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
}

.main-footer h5 {
    color: #e74c3c;
    margin-bottom: 1.1rem;
    font-weight: 600;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.6rem;
}

.footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #e74c3c;
}

.copyright-text {
    color: rgba(236, 240, 241, 0.7);
    font-size: 0.9rem;
}

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    padding: 1.1rem 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
    z-index: 1050;
    display: none;
}

.cookie-bar.show {
    display: block;
}

.btn-ok {
    background-color: #e74c3c;
    color: white;
    border: none;
}

.btn-ok:hover {
    background-color: #c0392b;
    color: white;
}

.btn-no {
    background-color: #6c757d;
    color: white;
    border: none;
}

.btn-no:hover {
    background-color: #5a6268;
    color: white;
}

.cookie-link {
    color: #e74c3c;
    text-decoration: none;
}

.cookie-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-area {
        min-height: 380px;
    }
    
    .section-heading {
        font-size: 1.9rem;
    }
    
    .content-area h3 {
        font-size: 1.5rem;
    }
    
    .cookie-bar .col-md-4 {
        text-align: center;
        margin-top: 1rem;
    }
    
    .cookie-bar .btn {
        margin: 0.25rem;
    }
}
