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

:root {
    --primary: #1a3a52;
    --accent-warm: #c89968;
    --accent-green: #3d5a47;
    --accent-gray: #b8bcc0;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border-light: #d4d4d4;
    --bg-light: #f8f7f5;
    --spacing-unit: 16px;
}

html, body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    background-color: var(--text-light);
    line-height: 1.6;
}

/* HEADER */
.header {
    background-color: var(--primary);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.nav-link:hover {
    color: var(--accent-warm);
    border-bottom-color: var(--accent-warm);
}

/* TYPOGRAPHY */
h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--accent-warm);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

/* CONTAINER */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* SECTIONS */
.section {
    padding: 5rem 0;
}

.section-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--text-light);
}

.section-light {
    background-color: var(--bg-light);
}

.section-accent-green {
    background-color: var(--accent-green);
    color: var(--text-light);
}

.section-accent-green h1, .section-accent-green h2, .section-accent-green h3 {
    color: var(--text-light);
}

/* HERO BLOCK */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(26, 58, 82, 0.95) 100%);
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: var(--text-light);
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-tagline {
    color: var(--accent-warm);
    font-style: italic;
    font-size: 1.15rem;
    margin-top: 2rem;
}

/* GRID LAYOUTS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* CARDS */
.card {
    background-color: var(--text-light);
    border: 1px solid var(--border-light);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    display: block;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border-radius: 2px;
}

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

.btn-secondary {
    background-color: var(--accent-green);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

/* IMAGES */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.img-wrapper:hover img {
    transform: scale(1.02);
}

/* FOOTER */
.footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--accent-warm);
}

.footer-tagline {
    color: var(--accent-warm);
    font-style: italic;
    margin-top: 0.5rem;
}

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

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.cookie-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--text-light);
    background-color: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

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

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

/* FORM */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-warm);
    box-shadow: 0 0 4px rgba(200, 153, 104, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-disclaimer {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-warm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* DISCLAIMER */
.disclaimer-block {
    background-color: #f0f4f8;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent-green);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 2px;
}

.disclaimer-block h3 {
    color: var(--accent-green);
    margin-bottom: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid-12 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .section {
        padding: 2rem 0;
    }
}
