:root {
    --lavender-light: #E6E6FA;
    --lavender-soft: #D8BFD8;
    --lavender-accent: #B8A9C9;
    --lavender-dark: #9683A8;
    --text-primary: #2D2D2D;
    --text-secondary: #5A5A5A;
    --text-muted: #7A7A7A;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-section: #F5F3F7;
    --border-light: #E8E4ED;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

.navbar {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--lavender-light) 100%);
    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-primary) !important;
    letter-spacing: 1px;
}

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

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

.navbar-toggler {
    border: 1px solid var(--border-light);
}

.hero-section {
    background: linear-gradient(180deg, var(--lavender-light) 0%, var(--bg-white) 100%);
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

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

.info-section {
    padding: 5rem 0;
}

.info-section:nth-child(even) {
    background-color: var(--bg-section);
}

.info-section:nth-child(odd) {
    background-color: var(--bg-white);
}

.section-title {
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--lavender-accent), var(--lavender-soft));
    margin-top: 1rem;
}

.info-text {
    font-size: 1rem;
    line-height: 1.8;
}

.info-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.three-images {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.three-images .info-image {
    flex: 1;
    margin-bottom: 0;
}

.three-images .info-image img {
    height: 200px;
}

.limits-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--lavender-light) 100%);
    padding: 4rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.limits-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.limits-box h3 {
    color: var(--lavender-dark);
    margin-bottom: 1.5rem;
}

.limits-box p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.cta-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--lavender-light) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

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

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--lavender-accent) 0%, var(--lavender-dark) 100%);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--lavender-dark) 0%, var(--lavender-accent) 100%);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-header {
    background: linear-gradient(180deg, var(--lavender-light) 0%, var(--bg-white) 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.page-content p, .page-content li {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-section);
    border-radius: 8px;
}

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

.contact-form .form-control:focus {
    border-color: var(--lavender-accent);
    box-shadow: 0 0 0 3px rgba(184, 169, 201, 0.2);
    outline: none;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

footer {
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--lavender-light) 100%);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-light);
}

.footer-brand {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

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

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 1rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

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

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

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

.cookie-banner .btn {
    margin-right: 0.5rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

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

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

    h2 {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .info-section {
        padding: 3rem 0;
    }

    .three-images {
        flex-direction: column;
    }

    .three-images .info-image img {
        height: 200px;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

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

    .info-section {
        padding: 2.5rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    footer {
        padding: 2rem 0 1rem;
    }

    .info-image img {
        height: 200px;
    }
}
