:root {
    --color-sand-beige: #d4c4a8;
    --color-sand-light: #f5f0e6;
    --color-sand-dark: #b8a88c;
    --color-text-primary: #3d3d3d;
    --color-text-secondary: #6b6b6b;
    --color-white: #ffffff;
    --color-border: #e8e2d6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-white);
}

h1, h2, h3 {
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--color-text-secondary);
}

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

a:hover {
    color: var(--color-sand-dark);
}

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

.navbar {
    background-color: var(--color-white);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
}

.navbar-brand:hover {
    color: var(--color-sand-dark);
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

.navbar-toggler {
    border: 1px solid var(--color-border);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(61, 61, 61, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
    padding-top: 80px;
}

.section {
    padding: 4rem 0;
}

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

.section-divider {
    height: 1px;
    background-color: var(--color-border);
    margin: 0;
}

.hero-section {
    padding: 6rem 0;
    background-color: var(--color-sand-light);
    text-align: center;
}

.hero-section h1 {
    margin-bottom: 1.5rem;
}

.hero-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-image {
    margin-top: 3rem;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.content-block {
    padding: 4rem 0;
}

.content-block h2 {
    margin-bottom: 2rem;
}

.content-image {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.two-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.two-column .column-text {
    order: 2;
}

.two-column .column-image {
    order: 1;
}

.texture-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.texture-item {
    border-radius: 4px;
    overflow: hidden;
}

.texture-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.texture-item p {
    padding: 1rem;
    background-color: var(--color-sand-light);
    margin: 0;
    font-size: 0.9rem;
}

.faq-section {
    background-color: var(--color-white);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--color-sand-dark);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding-top: 0.5rem;
}

.faq-answer.show {
    display: block;
}

.disclaimer-block {
    background-color: var(--color-sand-light);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.disclaimer-block h3 {
    margin-bottom: 1rem;
}

.disclaimer-block p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.disclaimer-block p:last-child {
    margin-bottom: 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    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(--color-sand-dark);
}

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

.btn-primary-custom {
    background-color: var(--color-sand-beige);
    color: var(--color-text-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-family: inherit;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--color-sand-dark);
}

.link-text {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-text:hover {
    color: var(--color-text-primary);
}

.soft-cta {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--color-sand-light);
}

.soft-cta p {
    max-width: 500px;
    margin: 0 auto;
}

footer {
    background-color: var(--color-text-primary);
    color: var(--color-white);
    padding: 3rem 0 2rem;
}

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

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

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

.footer-links a {
    font-size: 0.9rem;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-text-primary);
    color: var(--color-white);
    padding: 1rem;
    z-index: 9999;
    display: none;
}

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

.cookie-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.cookie-banner .btn-accept {
    background-color: var(--color-sand-beige);
    color: var(--color-text-primary);
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
}

.policy-content {
    padding: 4rem 0;
}

.policy-content h1 {
    margin-bottom: 2rem;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.policy-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
}

.about-content {
    padding: 4rem 0;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
    margin: 2rem 0;
}

.about-image img {
    width: 100%;
    height: auto;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

    h2 {
        font-size: 1.9rem;
    }

    h3 {
        font-size: 1.4rem;
    }

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

    .hero-image img {
        max-height: 500px;
    }

    .two-column {
        flex-direction: row;
        align-items: center;
    }

    .two-column .column-text {
        flex: 1;
        order: 1;
        padding-right: 2rem;
    }

    .two-column .column-image {
        flex: 1;
        order: 2;
    }

    .two-column.reverse .column-text {
        order: 2;
        padding-right: 0;
        padding-left: 2rem;
    }

    .two-column.reverse .column-image {
        order: 1;
    }

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

    .section {
        padding: 5rem 0;
    }

    .content-block {
        padding: 5rem 0;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 2.75rem;
    }

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