:root {
    --color-primary: #d4a574;
    --color-secondary: #e8ddd4;
    --color-accent: #c4956a;
    --color-bg: #faf8f5;
    --color-bg-alt: #f5f0ea;
    --color-text: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-white: #ffffff;
    --color-border: #e0d6cc;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.35rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.navbar {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-bg-alt) 100%);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text) !important;
}

.navbar-brand span {
    color: var(--color-primary);
}

.nav-link {
    color: var(--color-text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

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

.hero-section {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-secondary) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

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

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.content-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--color-border);
}

.content-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.content-card img {
    margin-bottom: 1.5rem;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-card h3 {
    margin-bottom: 1rem;
}

.info-box {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg-alt) 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    border-left: 4px solid var(--color-primary);
    margin: 2rem 0;
}

.info-box h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

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

.disclaimer-box h3 {
    color: var(--color-text);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    padding: 3rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    background: var(--color-white);
    color: var(--color-text);
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
}

.btn-cta:hover {
    background: var(--color-bg-alt);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text-light);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.image-with-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.image-with-text img {
    flex: 0 0 45%;
    max-width: 45%;
}

.image-with-text.reverse {
    flex-direction: row-reverse;
}

footer {
    background: linear-gradient(135deg, var(--color-text) 0%, #2d2d2d 100%);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--color-primary);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

footer h5 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9375rem;
}

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

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

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

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-banner p {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

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

.btn-cookie-accept {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-cookie-decline {
    background: transparent;
    color: var(--color-text);
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-cookie-decline:hover {
    background: var(--color-bg-alt);
}

.page-header {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-secondary) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    padding: 3rem 0;
}

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

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

.legal-content p, .legal-content ul, .legal-content li {
    color: var(--color-text-light);
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.contact-item-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.thank-you-content {
    text-align: center;
    padding: 4rem 0;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-content p {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.about-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .image-with-text {
        flex-direction: column;
    }
    
    .image-with-text img {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .image-with-text.reverse {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
