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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafaf8;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #888;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.hero-visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

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

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

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.intro-story {
    padding: 120px 20px;
    background: #f5f3f0;
}

.story-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.story-wrapper p {
    font-size: 24px;
    line-height: 1.8;
    color: #3a3a3a;
    font-weight: 300;
}

.visual-grid {
    display: flex;
    gap: 20px;
    padding: 0;
    background: #fff;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background-color: #e8e6e3;
}

.grid-item.large {
    flex: 2;
    height: 600px;
}

.grid-item.medium {
    flex: 1;
    height: 600px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 40px;
}

.grid-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 400;
}

.grid-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.problem-section {
    padding: 100px 20px;
    background: #2c2c2c;
    color: #f5f3f0;
}

.content-narrow {
    max-width: 650px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.4;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-visual {
    position: relative;
    height: 700px;
    overflow: hidden;
    background-color: #d4cfc7;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.insight-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.insight-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 300;
}

.insight-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #2c2c2c;
}

.benefits-reveal {
    display: flex;
    padding: 80px 40px;
    gap: 40px;
    background: #fafaf8;
}

.benefit-card {
    flex: 1;
    padding: 50px 30px;
    background: white;
    border: 1px solid #e5e5e5;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b6f47;
    font-weight: 500;
}

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

.testimonial-inline {
    padding: 100px 20px;
    background: #e8e4df;
}

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

.testimonial-wrapper blockquote {
    font-size: 22px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.services-preview {
    padding: 100px 40px;
    background: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 400;
    color: #1a1a1a;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-visual-card {
    flex: 1 1 calc(50% - 15px);
    position: relative;
    overflow: hidden;
    background-color: #f0ede8;
    min-width: 300px;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 500;
}

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

.price {
    display: block;
    font-size: 28px;
    color: #8b6f47;
    margin-bottom: 20px;
    font-weight: 600;
}

.select-service-btn {
    background: #8b6f47;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #6f5838;
}

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

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

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

.form-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 400;
}

.service-selection-display {
    background: #e8e4df;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #8b6f47;
}

.service-selection-display p {
    font-size: 16px;
    color: #555;
}

.service-selection-display.active {
    background: #d4cfc7;
}

.service-selection-display strong {
    color: #2c2c2c;
}

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

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

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

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

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

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

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

.final-cta {
    padding: 120px 20px;
    background: #2c2c2c;
    color: #f5f3f0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-content p {
    font-size: 20px;
    line-height: 1.7;
}

.footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 60px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8b6f47;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #8b6f47;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px;
    z-index: 2000;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ddd;
        padding-top: 10px;
    }

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

    .hero-overlay p {
        font-size: 16px;
    }

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

    .grid-item.large,
    .grid-item.medium {
        height: 400px;
    }

    .benefits-reveal {
        flex-direction: column;
    }

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

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

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

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