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

:root {
    --primary: #2c2c2c;
    --secondary: #8b7355;
    --accent: #d4a574;
    --light: #f5f5f5;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--white);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--accent);
}

.ad-label {
    font-size: 0.75rem;
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--accent);
    border-radius: 3px;
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 60px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(139, 115, 85, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 4rem;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.section-story {
    padding: 5rem 2rem;
    background-color: var(--light);
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.story-wrapper p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.image-embed {
    margin: 3rem 0;
    background-color: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
}

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

.section-problem {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
}

.problem-visual {
    flex: 1;
    background-color: var(--primary);
    border-radius: 8px;
    overflow: hidden;
}

.problem-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.problem-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.section-benefits {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.benefits-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 2.5rem;
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 280px;
    transition: transform 0.3s ease;
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.section-services {
    padding: 6rem 2rem;
    background-color: var(--light);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 320px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-item.selected {
    border: 3px solid var(--accent);
}

.service-image {
    width: 100%;
    height: 280px;
    background-color: var(--secondary);
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: auto;
}

.section-testimonials {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    font-size: 2.8rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-item {
    background-color: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
}

.section-form {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-wrapper p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--light);
    border-radius: 6px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.submit-btn {
    padding: 1.2rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-section p,
.footer-section ul {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.98);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: none;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2rem;
    max-width: 600px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.contact-page h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-info {
    background-color: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: var(--text);
}

.about-page {
    padding: 6rem 2rem;
}

.about-hero {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.about-image {
    margin: 3rem 0;
    background-color: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-page {
    padding: 6rem 2rem;
}

.services-page h1 {
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.disclaimer {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 8px;
    margin: 4rem auto;
    max-width: 1000px;
    border-left: 4px solid var(--accent);
}

.disclaimer h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .nav-menu {
        gap: 1.5rem;
    }

    .problem-container {
        flex-direction: column;
    }

    .service-item {
        flex: 1 1 100%;
    }

    .benefit-card {
        flex: 1 1 100%;
    }

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

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