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

:root {
    --primary: #d4a373;
    --primary-dark: #b8875f;
    --secondary: #f5e6d3;
    --dark: #2c2c2c;
    --light: #f9f9f9;
    --gray: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: var(--secondary);
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    border-bottom: 1px solid #e0d4c0;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: 0.3s;
}

.hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--secondary);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin-left: 60px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 28px;
    color: var(--gray);
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--secondary);
}

.card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

.card-description {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    flex: 1;
}

.card-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 18px;
}

.card-button {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.card-button:hover {
    background-color: var(--primary-dark);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image-container {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark);
}

.about-text p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 18px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background-color: var(--secondary);
    padding: 32px;
    border-radius: 12px;
    width: calc(50% - 12px);
    min-width: 280px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--gray);
}

.form-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.contact-info-section {
    padding: 60px 0;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.contact-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
    width: calc(33.333% - 16px);
    min-width: 260px;
    text-align: center;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--dark);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--dark);
}

.legal-content p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 8px;
}

footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

.footer-column p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

.references {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.references h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary);
}

.references ol {
    margin-left: 20px;
}

.references li {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 8px;
}

.references a {
    color: var(--primary);
    text-decoration: none;
}

.citation {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.citation:hover {
    text-decoration: underline;
}

.disclaimer-section {
    background-color: #f0f0f0;
    padding: 40px 0;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark);
}

.disclaimer-box p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.98);
    color: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 12px var(--shadow);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 14px;
}

.cookie-button.accept {
    background-color: var(--primary);
    color: var(--white);
}

.cookie-button.reject {
    background-color: #555;
    color: var(--white);
}

.cookie-button:hover {
    opacity: 0.9;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-box {
    background-color: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow);
    text-align: center;
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card-large {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    display: flex;
    transition: transform 0.3s;
}

.service-card-large:hover {
    transform: translateX(8px);
}

.service-card-large:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card-large:nth-child(even):hover {
    transform: translateX(-8px);
}

.service-image-large {
    width: 40%;
    object-fit: cover;
    background-color: var(--secondary);
}

.service-content-large {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-large h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-content-large p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-content-large .card-price {
    font-size: 32px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px var(--shadow);
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    .hero {
        height: 400px;
    }

    .hero-content {
        margin-left: 20px;
        padding: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .card {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .feature-card {
        width: 100%;
    }

    .service-card-large {
        flex-direction: column !important;
    }

    .service-image-large {
        width: 100%;
        height: 250px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-card {
        width: 100%;
    }
}
