* {
    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: #2a2a2a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

.btn-cookie.accept {
    background: #fff;
    color: #000;
}

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

.btn-cookie:hover {
    opacity: 0.8;
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a2a2a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.hero-visual {
    margin-top: 6rem;
    height: 90vh;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.story-intro {
    padding: 8rem 2rem;
    background: #f9f9f9;
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.9;
}

.narrow-text p {
    margin-bottom: 1.5rem;
}

.problem-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.text-block p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.image-block {
    flex: 1;
    background-color: #e8e8e8;
}

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

.insight-section {
    padding: 8rem 2rem;
    background: #2a2a2a;
    color: #fff;
}

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

.centered-insight h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.centered-insight p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.visual-break {
    height: 70vh;
    overflow: hidden;
    background-color: #ddd;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-block {
    padding: 8rem 2rem;
    background: #f4f4f4;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2.5rem;
    border-left: 4px solid #2a2a2a;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

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

.benefit-text {
    flex: 1;
}

.benefit-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 1.15rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.benefit-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.services-preview {
    padding: 8rem 2rem;
    background: #f9f9f9;
}

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

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ddd;
}

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

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #555;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a2a2a;
    margin: 1.5rem 1.5rem 1rem;
}

.cta-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #2a2a2a;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-service:hover {
    background: #000;
}

.form-section {
    padding: 8rem 2rem;
    background: #2a2a2a;
    color: #fff;
}

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

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #555;
    background: #fff;
    color: #2a2a2a;
}

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #fff;
    color: #2a2a2a;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #f0f0f0;
}

.footer {
    padding: 4rem 2rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

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

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-block a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #fff;
}

.footer-block p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .split-content,
    .benefit-layout {
        flex-direction: column;
    }

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

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