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

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

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #B85A2A !important;
}

.header-main {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-light .navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #B85A2A;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    color: #B85A2A;
    font-weight: 500;
}

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

.page-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.15rem;
    color: #666;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
}

.subsection-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.rounded-lg {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.info-list li:before {
    content: "•";
    color: #B85A2A;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.bg-warning-light {
    background-color: #fff8f0 !important;
}

.disclaimer-box {
    background: #fff;
    border-left: 4px solid #B85A2A;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.glossary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.glossary-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 3px solid #B85A2A;
}

.glossary-term {
    font-size: 1.15rem;
    font-weight: 600;
    color: #B85A2A;
    margin-bottom: 0.5rem;
}

.glossary-definition {
    color: #555;
    margin-bottom: 0;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background-color: #B85A2A;
    border-color: #B85A2A;
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #9a4a22;
    border-color: #9a4a22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(184, 90, 42, 0.3);
}

.btn-outline-primary {
    border-color: #B85A2A;
    color: #B85A2A;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #B85A2A;
    border-color: #B85A2A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(184, 90, 42, 0.3);
}

.footer-main {
    background-color: #222;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-main p {
    color: #aaa;
    font-size: 0.95rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner .btn-light {
    background-color: #fff;
    color: #222;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-banner .btn-light:hover {
    background-color: #B85A2A;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .subsection-title {
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
