:root {
    --lavender-light: #E6E0F8;
    --lavender-pastel: #D4C8E8;
    --lavender-medium: #B8A9D9;
    --lavender-accent: #9D8BC7;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-text: #666666;
    --dark-text: #333333;
    --border-radius: 8px;
}

* {
    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.6;
    color: var(--dark-text);
    background-color: var(--white);
}

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

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

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

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

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

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

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

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

.navbar {
    background: linear-gradient(135deg, var(--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(--dark-text) !important;
    letter-spacing: 1px;
}

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

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

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

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

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

.hero-section h1 {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(157, 139, 199, 0.2);
}

.section {
    padding: 4rem 0;
}

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

.section-lavender {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--lavender-light) 50%, var(--off-white) 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(--lavender-pastel), var(--lavender-accent));
    border-radius: 2px;
}

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

.content-block h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.content-block p {
    line-height: 1.8;
}

.image-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

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

.image-grid.single-image {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-custom {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(157, 139, 199, 0.15);
}

.limits-context {
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--lavender-pastel) 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 2rem 0;
}

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

.limits-context ul {
    list-style: none;
    padding: 0;
}

.limits-context li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-text);
}

.limits-context li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--lavender-accent);
}

.cta-section {
    background: linear-gradient(135deg, var(--lavender-pastel) 0%, var(--lavender-light) 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.btn-cta {
    background: var(--white);
    color: var(--lavender-accent);
    border: 2px solid var(--lavender-accent);
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--lavender-accent);
    color: var(--white);
    text-decoration: none;
}

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

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

.footer p {
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer a {
    color: var(--lavender-light);
    transition: color 0.3s ease;
}

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

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

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

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

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

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

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

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

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

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

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

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

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

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

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

.contact-form .form-control {
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-form .btn-submit {
    background: var(--lavender-accent);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: background 0.3s ease;
    width: 100%;
}

.contact-form .btn-submit:hover {
    background: var(--lavender-medium);
}

.form-disclaimer {
    background: var(--lavender-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-text);
}

.contact-info {
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--lavender-pastel) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    height: 100%;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--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.9rem;
}

.cookie-banner .btn-accept {
    background: var(--lavender-accent);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-banner .btn-accept:hover {
    background: var(--lavender-medium);
}

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

    h2 {
        font-size: 1.75rem;
    }

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

    .section {
        padding: 3rem 0;
    }

    .image-grid.three-images {
        grid-template-columns: 1fr;
    }

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

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

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-section .order-md-1 {
        order: 2;
    }

    .hero-section .order-md-2 {
        order: 1;
        margin-bottom: 2rem;
    }

    .section {
        padding: 2rem 0;
    }

    .card-custom {
        padding: 1.5rem;
    }

    .limits-context {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    .footer {
        text-align: center;
    }

    .footer-links {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .btn-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
