@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f6f3;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

.pk3_container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.zx9_header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.zx9_header .pk3_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lm7_brand h1 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.wr4_navigation {
    display: none;
}

.ty8_menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.ty8_menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.ty8_menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.ty8_menu a:hover::after {
    width: 100%;
}

.ty8_menu a:hover {
    color: var(--secondary-color);
}

.ju1_burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.ju1_burger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.ks4_mobile_menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 20px;
    z-index: 999;
}

.ks4_mobile_menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ks4_mobile_menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.ks4_mobile_menu a:hover {
    color: var(--secondary-color);
}

.vb2_hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qp3_hero_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xm8_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(139, 115, 85, 0.75));
    z-index: 1;
}

.rt5_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px;
    max-width: 700px;
}

.rt5_hero_content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rt5_hero_content p {
    font-size: 18px;
    margin-bottom: 32px;
    font-weight: 300;
    opacity: 0.95;
}

.bn7_cta_button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    min-height: 50px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.bn7_cta_button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nq5_stories {
    padding: 80px 0;
    background-color: var(--background-light);
}

.yl2_section_title {
    font-family: var(--font-heading);
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.wq6_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.fp9_card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fp9_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hx4_card_image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.hx4_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fp9_card:hover .hx4_card_image img {
    transform: scale(1.05);
}

.mt1_card_content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mt1_card_content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.mt1_card_content p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 15px;
}

.cv8_read_more {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: var(--transition);
    align-self: flex-start;
}

.cv8_read_more:hover {
    color: var(--accent-color);
    gap: 12px;
}

.df6_timeline {
    padding: 80px 0;
    background-color: var(--white);
}

.ux7_timeline_wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.ux7_timeline_wrapper::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.sq2_timeline_item {
    position: relative;
    margin-bottom: 40px;
}

.pz9_timeline_marker {
    position: absolute;
    left: -29px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.kl3_timeline_content {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.kl3_timeline_content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.kl3_timeline_content p {
    color: var(--text-light);
    font-size: 15px;
}

.gh9_newsletter {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.od4_newsletter_wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.hn6_newsletter_text {
    text-align: center;
    margin-bottom: 40px;
}

.hn6_newsletter_text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hn6_newsletter_text p {
    font-size: 16px;
    opacity: 0.9;
}

.tz1_newsletter_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fv5_form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fv5_form_group label {
    font-weight: 500;
    font-size: 14px;
}

.fv5_form_group input {
    padding: 14px 16px;
    min-height: 48px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
    background-color: var(--white);
}

.fv5_form_group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.fv5_form_group input:valid {
    border-color: #4caf50;
}

.fv5_form_group input:invalid:not(:placeholder-shown) {
    border-color: #f44336;
}

.tz1_newsletter_form .bn7_cta_button {
    margin-top: 10px;
    width: 100%;
}

.mx5_footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.wp7_footer_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.bt2_footer_col h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.bt2_footer_col p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 14px;
}

.bt2_footer_col ul {
    list-style: none;
}

.bt2_footer_col ul li {
    margin-bottom: 8px;
}

.bt2_footer_col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    font-size: 14px;
}

.bt2_footer_col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.bt2_footer_col i {
    margin-right: 8px;
    color: var(--accent-color);
}

.qn8_footer_legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zd6_legal_link {
    background: none;
    border: none;
    color: var(--white);
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 13px;
    font-family: var(--font-body);
}

.zd6_legal_link:hover {
    opacity: 1;
    color: var(--accent-color);
}

.uc9_copyright {
    text-align: center;
    padding-top: 20px;
    opacity: 0.7;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.js4_cookie_buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner button {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    font-family: var(--font-body);
}

#cookie-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

#cookie-accept:hover {
    background-color: var(--secondary-color);
}

#cookie-decline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

#cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.em1_modal,
.hw9_legal_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vk3_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.lg5_modal_content {
    position: relative;
    background-color: var(--white);
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 10001;
}

.xr7_modal_close {
    position: sticky;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 20px 0 auto;
    transition: var(--transition);
    z-index: 10002;
}

.xr7_modal_close:hover {
    background-color: var(--secondary-color);
    transform: rotate(90deg);
}

.nw2_modal_body {
    padding: 0 40px 40px 40px;
}

.nw2_modal_body h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.nw2_modal_body p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.nw2_modal_body img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

@media (min-width: 576px) {
    .rt5_hero_content h2 {
        font-size: 48px;
    }

    .rt5_hero_content p {
        font-size: 20px;
    }

    .wq6_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-banner p {
        margin-bottom: 0;
    }

    .cookie-banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .js4_cookie_buttons {
        flex-shrink: 0;
    }
}

@media (min-width: 768px) {
    .ju1_burger {
        display: none;
    }

    .wr4_navigation {
        display: block;
    }

    .lm7_brand h1 {
        font-size: 28px;
    }

    .rt5_hero_content h2 {
        font-size: 56px;
    }

    .yl2_section_title {
        font-size: 42px;
    }

    .wp7_footer_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ux7_timeline_wrapper {
        padding-left: 60px;
    }

    .pz9_timeline_marker {
        left: -49px;
    }
}

@media (min-width: 1024px) {
    .wq6_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nq5_stories {
        padding: 100px 0;
    }

    .df6_timeline {
        padding: 100px 0;
    }

    .gh9_newsletter {
        padding: 100px 0;
    }

    .mx5_footer {
        padding: 80px 0 30px;
    }
}