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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

.main-nav {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b6f47;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1600&h=900&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #8b6f47;
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #6f5738;
}

.intro-section {
    padding: 80px 20px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.story-section {
    padding: 100px 20px;
}

.bg-light {
    background: #f8f9fa;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.problem-section {
    padding: 100px 20px;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-item {
    display: flex;
    gap: 20px;
}

.problem-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.problem-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.insight-section {
    padding: 100px 20px;
}

.bg-dark {
    background: #2c3e50;
    color: #fff;
}

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

.lead {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0.95;
}

.insight-content p {
    font-size: 18px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.trust-section {
    padding: 100px 20px;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-card {
    flex: 1;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

.testimonial {
    margin-bottom: 50px;
    padding: 40px;
    background: #fff;
    border-left: 4px solid #8b6f47;
    font-style: italic;
}

.testimonial p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    color: #777;
    font-size: 16px;
}

.benefit-section {
    padding: 100px 20px;
}

.benefit-columns {
    display: flex;
    gap: 50px;
}

.benefit-col {
    flex: 1;
}

.benefit-col h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.benefit-col p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 20px;
}

.bg-gradient {
    background: linear-gradient(135deg, #6f5738 0%, #8b6f47 100%);
}

.section-title-center.white {
    color: #fff;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-info {
    padding: 24px;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #8b6f47;
    margin-top: 12px;
}

.urgency-section {
    padding: 80px 20px;
}

.urgency-box {
    background: #fff3e0;
    padding: 50px;
    border-radius: 8px;
    border: 2px solid #ffb74d;
    text-align: center;
}

.urgency-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #e65100;
}

.urgency-box p {
    font-size: 18px;
    color: #555;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    font-size: 17px;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.main-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.btn-submit {
    width: 100%;
    background: #8b6f47;
    color: #fff;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #6f5738;
}

.form-note {
    margin-top: 16px;
    font-size: 13px;
    color: #777;
    text-align: center;
}

.form-note a {
    color: #8b6f47;
    text-decoration: underline;
}

.final-cta {
    padding: 100px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-button {
    display: block;
    background: #e65100;
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(230, 81, 0, 0.4);
    transition: all 0.3s;
}

.sticky-button:hover {
    background: #bf360c;
    transform: translateY(-2px);
}

.main-footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #fff;
    opacity: 0.8;
    font-size: 15px;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #8b6f47;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-accept {
    background: #8b6f47;
    color: #fff;
}

.btn-accept:hover {
    background: #6f5738;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

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

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

    .story-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .benefit-columns {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .section-title-center {
        font-size: 32px;
    }

    .intro-text {
        font-size: 18px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}