:root {
    --primary: #8B5A6B;
    --primary-dark: #6B4455;
    --secondary: #F5E6E8;
    --accent: #D4A574;
    --text: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #FDF9F9;
    --bg-card: #FFFFFF;
    --border: #E8D8DC;
    --shadow: rgba(139, 90, 107, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.ad-disclosure {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
}

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

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

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 90, 107, 0.75) 0%, rgba(212, 165, 116, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 650px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.section {
    padding: 90px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 15px;
}

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

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

.card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 340px;
    max-width: 380px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px var(--shadow);
}

.card-image {
    height: 220px;
    overflow: hidden;
    background-color: var(--secondary);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 28px;
}

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

.card-content p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 15px;
}

.card-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 18px;
}

.card-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.about-section {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.about-content {
    flex: 1 1 450px;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.features-list {
    list-style: none;
    margin-top: 25px;
}

.features-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 35px;
    flex: 1 1 320px;
    max-width: 400px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    font-size: 15px;
}

.cta-section {
    background-color: var(--secondary);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 350px;
}

.contact-info h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 5px;
}

.contact-item-content p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-form-wrapper {
    flex: 1 1 450px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 90, 107, 0.15);
}

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

footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 25px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    margin-bottom: 45px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 22px;
    color: var(--accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    margin-top: 50px;
    border-left: 4px solid var(--accent);
}

.disclaimer h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 16px;
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 30px var(--shadow);
    padding: 25px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text);
}

.cookie-content p a {
    color: var(--primary);
}

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

.cookie-buttons button {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: var(--primary-dark);
}

.cookie-reject {
    background-color: var(--border);
    color: var(--text);
}

.cookie-reject:hover {
    background-color: var(--text-light);
    color: var(--white);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.content-page {
    padding: 70px 0;
}

.content-page h2 {
    font-size: 26px;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 18px;
}

.content-page h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 14px;
}

.content-page p {
    margin-bottom: 16px;
    color: var(--text);
    font-size: 15px;
}

.content-page ul {
    margin-bottom: 18px;
    padding-left: 25px;
}

.content-page ul li {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 15px;
}

.thanks-container {
    text-align: center;
    padding: 120px 20px;
    max-width: 650px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 50px;
    color: var(--primary);
}

.thanks-container h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 18px;
}

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    flex: 1 1 340px;
    max-width: 380px;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--secondary);
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 21px;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 18px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.price-note {
    font-size: 12px;
    color: var(--text-light);
}

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        display: none;
        box-shadow: 0 10px 30px var(--shadow);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 25px;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .card {
        max-width: 100%;
    }

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