:root {
    --beige-warm: #E8DCC4;
    --beige-light: #F5F0E6;
    --beige-accent: #D4C4A8;
    --text-dark: #2C2C2C;
    --text-medium: #5A5A5A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --border-light: #E0D8C8;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: normal;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h2 {
    font-size: 1.875rem;
    line-height: 1.4;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

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

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

a:hover {
    color: var(--text-medium);
}

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

.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: var(--text-medium);
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

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

.hero-section {
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-warm) 100%);
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 5rem 0;
}

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

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

.section-accent {
    background: linear-gradient(135deg, var(--beige-warm) 0%, var(--beige-accent) 100%);
}

.content-block {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.content-image {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.limits-block {
    background: linear-gradient(135deg, var(--beige-warm) 0%, var(--beige-light) 100%);
    border-radius: 12px;
    padding: 3rem;
    border-left: 4px solid var(--beige-accent);
}

.limits-block h2 {
    margin-bottom: 1.5rem;
}

.cta-section {
    background-color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--beige-warm);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--beige-accent);
    color: var(--text-dark);
    text-decoration: none;
}

.footer {
    background-color: var(--text-dark);
    color: var(--beige-light);
    padding: 3rem 0 1.5rem;
}

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

.footer p {
    color: var(--beige-light);
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer a {
    color: var(--beige-light);
    opacity: 0.9;
}

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

.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: 1.5rem;
}

.disclaimer-text {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

.page-header {
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-warm) 100%);
    padding: 4rem 0;
    text-align: center;
}

.policy-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin: -2rem auto 3rem;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--beige-accent);
    box-shadow: 0 0 0 3px rgba(212, 196, 168, 0.2);
}

.form-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-warm) 100%);
}

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

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

.cookie-banner p {
    color: var(--beige-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-btn {
    background-color: var(--beige-warm);
    color: var(--text-dark);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

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

.about-image {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.info-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .content-block {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.375rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .policy-content {
        padding: 1.5rem;
        margin: -1rem 1rem 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .limits-block {
        padding: 2rem;
    }
}
