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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 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: #ffffff;
    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;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-accept {
    background: #ffffff;
    color: #000000;
}

.btn-accept:hover {
    background: #e0e0e0;
}

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

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

.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #666666;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}

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

.hero-overlay {
    position: absolute;
    bottom: 10%;
    left: 5%;
    max-width: 600px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.story-intro {
    padding: 6rem 2rem;
    background: #fafafa;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #3a3a3a;
    font-weight: 300;
}

.problem-reveal {
    padding: 5rem 2rem;
}

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

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.content-left p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.content-right {
    flex: 1;
}

.image-block {
    background-color: #ececec;
}

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

.insight-section {
    padding: 6rem 2rem;
    background: #2a2a2a;
    color: #ffffff;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: center;
}

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

.visual-story {
    height: 70vh;
    min-height: 500px;
}

.image-full-bleed {
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.trust-building {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.trust-card p {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 5rem 2rem;
}

.testimonial {
    margin: 3rem 0;
    padding: 2rem 0;
    border-left: 3px solid #2a2a2a;
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.testimonial cite {
    font-style: normal;
    color: #666666;
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

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

.content-right-list {
    flex: 1;
}

.content-right-list h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.benefits-list li {
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #3a3a3a;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.image-divider {
    height: 60vh;
    min-height: 400px;
    background-color: #e5e5e5;
}

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

.services-preview {
    padding: 6rem 2rem;
    background: #fafafa;
}

.centered-heading {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
}

.centered-subtext {
    text-align: center;
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 4rem;
}

.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.card-image {
    height: 250px;
    background-color: #ececec;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.card-content p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-reveal {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #2a2a2a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #444444;
}

.cta-form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.cta-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

.cta-form-section > p {
    text-align: center;
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 3rem;
}

.order-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #856404;
    display: none;
}

.form-notice.show {
    display: block;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cccccc;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    padding: 0.875rem;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    color: #3a3a3a;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #2a2a2a;
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover:not(:disabled) {
    background: #444444;
}

.btn-submit:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.final-trust {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.6;
    text-align: center;
}

.site-footer {
    background: #2a2a2a;
    color: #ffffff;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-info {
    text-align: center;
    font-size: 0.9rem;
    color: #aaaaaa;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .split-content,
    .split-reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .main-nav {
        gap: 1rem;
    }

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

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