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

:root {
    --primary: #2c1810;
    --secondary: #8b4513;
    --accent: #d4a574;
    --light: #f5f0ea;
    --dark: #1a0f0a;
    --text: #333;
    --text-light: #666;
}

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

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

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

header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

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

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

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

.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--light);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent);
    font-weight: 300;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    color: rgba(255,255,255,0.9);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    background: var(--secondary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.cta-secondary:hover {
    background: var(--accent);
    color: var(--dark);
}

.story-section {
    padding: 100px 0;
    background: var(--light);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-section {
    padding: 100px 0;
    background: white;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--light);
    padding: 40px 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.problem-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.problem-text {
    color: var(--text-light);
    line-height: 1.7;
}

.insight-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--light);
}

.insight-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.insight-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--accent);
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--light);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--text-light);
}

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

.testimonial-rating {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    min-width: 80px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.benefit-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.services-section {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--light);
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: var(--secondary);
    color: var(--light);
}

.form-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    text-align: center;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.form-submit {
    width: 100%;
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 18px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--secondary);
    color: var(--light);
}

.urgency-section {
    padding: 80px 0;
    background: var(--accent);
    text-align: center;
}

.urgency-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.urgency-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: var(--secondary);
    color: var(--light);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.sticky-cta:hover {
    background: var(--accent);
    color: var(--dark);
    transform: scale(1.05);
}

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

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--light);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.thanks-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.legal-page {
    padding: 100px 0;
    background: white;
}

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

.legal-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.legal-section p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .story-block {
        flex-direction: column !important;
    }

    .story-block:nth-child(even) {
        flex-direction: column !important;
    }

    .problem-card {
        min-width: 100%;
    }

    .benefit-item {
        flex-direction: column;
        gap: 20px;
    }

    .benefit-number {
        min-width: auto;
    }

    .service-card {
        min-width: 100%;
    }

    .form-container {
        padding: 30px 20px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

.inline-cta-section {
    padding: 60px 0;
    background: var(--secondary);
    text-align: center;
}

.inline-cta-title {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 30px;
}

.trust-section {
    padding: 100px 0;
    background: white;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 30px;
}

.trust-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.trust-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.trust-text {
    color: var(--text-light);
    line-height: 1.7;
}

.selected-service {
    background: var(--light);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary);
}

.selected-service-text {
    color: var(--primary);
    font-weight: 600;
}

.about-page {
    padding: 100px 0;
}

.about-hero {
    background: var(--primary);
    color: var(--light);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 400px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--secondary);
}

.contact-page {
    padding: 100px 0;
    background: var(--light);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-info {
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column !important;
    }

    .about-section:nth-child(even) {
        flex-direction: column !important;
    }

    .about-image {
        height: 250px;
    }
}
