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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #d4a574;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f6f2;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

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

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

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

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

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

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(139, 111, 71, 0.85)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23d4a574" width="1200" height="800"/><path fill="%23c09463" d="M0 400h1200v400H0z"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-section .subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.5;
}

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

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

.section {
    padding: 80px 20px;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.6;
}

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

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.story-image {
    flex: 1;
    min-height: 400px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    overflow: hidden;
}

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

.problem-section {
    background: var(--primary-color);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.problem-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 800;
}

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

.problem-item {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.problem-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.problem-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.insight-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.insight-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
    text-align: center;
}

.insight-text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.highlight-box {
    background: white;
    padding: 40px;
    border-left: 5px solid var(--secondary-color);
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-box p {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.7;
}

.testimonial-section {
    padding: 100px 20px;
    background: white;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-light);
}

.services-showcase {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

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

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

.service-image {
    height: 240px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.service-content {
    padding: 35px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.select-service-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: var(--accent-color);
}

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

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-light {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.form-section {
    padding: 100px 20px;
    background: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 18px 35px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 25px rgba(212, 165, 116, 0.5);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    display: none;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

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

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

footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 30px;
}

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

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

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.urgency-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

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

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.policy-content {
    max-width: 900px;
    margin: 100px auto 60px;
    padding: 0 20px;
}

.policy-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.policy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 38px;
    }

    .hero-section .subtitle {
        font-size: 18px;
    }

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

    .story-block.reverse {
        flex-direction: column;
    }

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

    .services-grid {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    nav {
        display: none;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 15px 25px;
        font-size: 14px;
    }

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