:root {
    --primary-color: #2C3E50;
    --accent-gold: #E8C547;
    --accent-green: #9CCC65;
    --accent-grey: #BDC3C7;
    --text-light: #FFFFFF;
    --text-dark: #2C3E50;
    --bg-light: #F5F5F5;
    --bg-dark: #1a2332;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

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

a:hover {
    color: var(--accent-green);
}

.container-lg {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-header {
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}

.brand-name {
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 0.95rem;
    margin-left: 2rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.hero-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-section p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-light {
    background-color: #FFFFFF;
}

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

.section-grey {
    background-color: var(--accent-grey);
    color: var(--primary-color);
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}

.section-dark .section-title h2::after {
    background-color: var(--accent-green);
}

.card-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
}

.card-item h3 {
    color: var(--primary-color);
}

.card-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    max-width: 400px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.two-column img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-gold);
    color: var(--primary-color);
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.button-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.button-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-color);
}

.section-dark .button {
    background-color: var(--accent-green);
    color: var(--primary-color);
    border-color: var(--accent-green);
}

.section-dark .button:hover {
    background-color: transparent;
    color: var(--accent-green);
}

.content-section {
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-section p {
    margin-bottom: 1.8rem;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.8rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.disclaimer-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-gold);
    padding: 25px;
    margin: 40px 0;
    border-radius: 4px;
}

.disclaimer-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background-color: #F9F9F9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F0F0F0;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px rgba(232, 197, 71, 0.2);
}

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

.form-submit {
    display: flex;
    gap: 15px;
}

.form-submit .button {
    flex: 1;
    text-align: center;
}

.success-message {
    background-color: var(--accent-green);
    color: #FFFFFF;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: center;
}

.success-message h2 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 10px;
}

.success-message p {
    margin-bottom: 0;
}

.footer-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-title {
    color: var(--accent-gold);
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: -400px;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 25px 20px;
    z-index: 10000;
    transition: bottom 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-text {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

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

.btn-cookie.accept:hover {
    background-color: var(--accent-green);
}

.btn-cookie.decline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.btn-cookie.learn-more {
    color: var(--accent-gold);
    text-decoration: underline;
}

.btn-cookie.learn-more:hover {
    color: var(--accent-green);
}

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

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-section {
        padding: 50px 0;
        min-height: 400px;
    }

    .section {
        padding: 50px 0;
    }

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

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

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