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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: #f44336;
    color: white;
}

.btn-reject:hover {
    background: #da190b;
}

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 12px;
    color: #999;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 22px;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.story-intro {
    background: #ffffff;
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 400;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #444;
}

.insight-block {
    background: #f9f9f9;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 18px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.reference {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.reference:hover {
    text-decoration: underline;
}

.problem-section {
    background: #2c2c2c;
    color: #fff;
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 300;
}

.problem-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.solution-reveal {
    background: #ffffff;
}

.image-text-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.image-text-stack img {
    width: 100%;
    border-radius: 8px;
}

.stack-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.stack-text p {
    font-size: 17px;
    margin-bottom: 18px;
}

.benefits-section {
    background: #f0f4f8;
}

.benefits-section h2 {
    font-size: 34px;
    margin-bottom: 36px;
    font-weight: 400;
}

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

.benefits-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 20px;
    font-weight: bold;
}

.testimonials-inline {
    background: #ffffff;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 32px;
    border-left: 4px solid #2c2c2c;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
}

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

.trust-elements {
    background: #fafafa;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

.services-pricing {
    background: #ffffff;
}

.services-pricing h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

.services-pricing > p {
    font-size: 17px;
    margin-bottom: 48px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    margin: 24px 24px 12px 24px;
    font-weight: 400;
}

.service-card p {
    margin: 0 24px 16px 24px;
    font-size: 16px;
    color: #555;
}

.service-card .price {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 20px 24px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1a1a1a;
}

.btn-select-service.selected {
    background: #4CAF50;
}

.contact-form-section {
    background: #f0f4f8;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 400;
}

.contact-form-section > div > p {
    font-size: 17px;
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.selected-service-display {
    background: #f9f9f9;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a1a1a;
}

.disclaimer-section {
    background: #fff9e6;
    padding: 40px 24px;
}

.disclaimer-text {
    max-width: 920px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.references-section {
    background: #fafafa;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}

.references-list {
    font-size: 14px;
    color: #555;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 24px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

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

.footer-note {
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-content p {
        font-size: 18px;
    }

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

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

    .container-wide {
        padding: 60px 24px;
    }
}