:root {
    --primary: #1e3c34;
    --accent-warm: #a67c52;
    --accent-muted: #7a9e7e;
    --accent-light: #f0ebe3;
    --white: #ffffff;
    --text-dark: #2d3748;
    --border-color: #d4d9d0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.85rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--accent-warm);
    text-decoration: underline;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    box-shadow: 0 1px 10px rgba(30, 60, 52, 0.08);
}

.navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--accent-warm);
}

.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 800px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    font-size: 2rem;
}

.hero-content p {
    color: var(--accent-light);
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
    margin-bottom: 0;
}

.section-alt {
    background-color: var(--accent-light);
    padding: 3rem 0;
}

.section-alt h2,
.section-alt h3 {
    color: var(--primary);
}

.section-dark {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 0;
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: var(--accent-light);
}

.section-dark a {
    color: var(--accent-light);
    text-decoration: underline;
}

.section-dark a:hover {
    color: var(--white);
}

.section-content .container,
.section-intro .container,
.section-text .container {
    padding: 2.5rem 15px;
}

.section-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 1.5rem auto;
    border-radius: 4px;
}

.card-block {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.card-block .card-img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    max-width: 800px;
}

.card-block .card-body {
    padding: 1.25rem;
}

.disclaimer-block {
    background: var(--accent-light);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-warm);
}

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

.cta-links .btn {
    background: var(--accent-warm);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
}

.cta-links .btn:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5248 100%);
    color: var(--white);
    padding: 2.5rem 0;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--accent-light);
    margin-bottom: 0;
}

footer {
    background-color: var(--primary);
    color: var(--accent-light);
    padding: 2.5rem 0 1.5rem;
}

footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

footer a {
    color: var(--accent-light);
}

footer a:hover {
    color: var(--white);
}

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

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

.footer-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-contact p,
.footer-section p {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.9rem;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--accent-light);
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-buttons .btn-primary {
    background: var(--accent-warm);
    border: none;
    color: var(--white);
}

.cookie-buttons .btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-light);
    color: var(--accent-light);
}

.cookie-buttons .btn-secondary:hover,
.cookie-buttons a.btn-secondary {
    color: var(--primary);
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.contact-form-wrapper .disclaimer-box {
    background: var(--accent-light);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-block {
    margin-bottom: 1.5rem;
}

.contact-block h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--accent-warm);
    border-color: var(--accent-warm);
}

.policy-section h2 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
}

.policy-section ul {
    margin: 1rem 0 1rem 1.25rem;
}

@media (max-width: 767px) {
    .hero {
        min-height: 320px;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.4rem; }
}
