:root {
    --deep-slate: hsl(210, 15%, 25%);
    --muted-teal: hsl(170, 40%, 65%);
    --soft-gold: hsl(40, 60%, 75%);
    --subdued-plum: hsl(340, 25%, 50%);
    --neutral-white: #f8f7f5;
    --neutral-gray: #e8e6e1;
    --neutral-dark: #2a2a28;
}

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

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--neutral-white);
    color: var(--neutral-dark);
    line-height: 1.6;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

header.header-section {
    background-color: var(--deep-slate);
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-custom {
    background-color: transparent;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--soft-gold);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--neutral-white) !important;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--soft-gold) !important;
}

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

section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--neutral-gray);
}

section:last-child {
    border-bottom: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--deep-slate);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: #444;
}

.section-hero {
    background-color: var(--deep-slate);
    color: var(--neutral-white);
    padding: 7rem 0;
    text-align: center;
}

.section-hero h1 {
    color: var(--neutral-white);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -2px;
}

.section-hero p {
    color: var(--neutral-gray);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.section-text {
    padding-right: 2rem;
}

.section-image {
    text-align: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--muted-teal);
    margin-bottom: 1.5rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card-item {
    background-color: white;
    border: 1px solid var(--neutral-gray);
    padding: 2rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.card-item:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--muted-teal);
}

.card-item h3 {
    color: var(--deep-slate);
    margin-bottom: 1rem;
}

.btn-primary-custom {
    background-color: var(--deep-slate);
    color: var(--neutral-white);
    border: 1px solid var(--deep-slate);
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 2px;
    font-weight: 500;
}

.btn-primary-custom:hover {
    background-color: var(--muted-teal);
    border-color: var(--muted-teal);
    color: var(--deep-slate);
    text-decoration: none;
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--deep-slate);
    border: 1px solid var(--deep-slate);
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 2px;
    font-weight: 500;
}

.btn-secondary-custom:hover {
    background-color: var(--deep-slate);
    color: var(--neutral-white);
    text-decoration: none;
}

.section-full-width {
    background-color: var(--neutral-gray);
    padding: 5rem 0;
    margin: 0 -2rem;
}

.disclaimer-box {
    background-color: var(--neutral-white);
    border-left: 4px solid var(--muted-teal);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 2px;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

footer.footer-section {
    background-color: var(--deep-slate);
    color: var(--neutral-white);
    padding: 4rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-info {
    padding-right: 2rem;
}

.footer-brand {
    color: var(--soft-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-address, .footer-contact {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--neutral-gray);
}

.footer-contact a {
    color: var(--soft-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--muted-teal);
}

.footer-links {
    padding-left: 2rem;
}

.footer-heading {
    color: var(--soft-gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: var(--neutral-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--muted-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--deep-slate);
    color: var(--neutral-white);
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--soft-gold);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--neutral-white);
    background-color: transparent;
    color: var(--neutral-white);
    cursor: pointer;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background-color: var(--muted-teal);
    border-color: var(--muted-teal);
    color: var(--deep-slate);
}

.cookie-btn:hover {
    opacity: 0.85;
}

.form-group-custom {
    margin-bottom: 1.5rem;
}

.form-group-custom label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--deep-slate);
}

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

.form-group-custom input:focus,
.form-group-custom textarea:focus {
    outline: none;
    border-color: var(--muted-teal);
    box-shadow: 0 0 0 3px rgba(109, 169, 173, 0.1);
}

.form-section {
    max-width: 600px;
}

@media (max-width: 768px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-content.reverse {
        direction: ltr;
    }

    .section-text {
        padding-right: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-hero h1 {
        font-size: 2.5rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

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

    .cookie-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .footer-content {
        text-align: center;
    }

    .footer-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .footer-links {
        padding-left: 0;
    }

    section {
        padding: 3rem 0;
    }
}

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

    h2 {
        font-size: 1.35rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .section-hero {
        padding: 3rem 0;
    }

    .section-hero h1 {
        font-size: 1.75rem;
    }

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