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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
}

.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;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #d4a574;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #c49563;
}

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

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}

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

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

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

.ad-label {
    font-size: 12px;
    color: #888;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

.editorial-content {
    max-width: 100%;
}

.story-header {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 30px;
}

.hero-overlay h1 {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.3;
    font-weight: 400;
}

.story-intro,
.story-problem,
.story-insight,
.story-trust,
.cta-inline,
.disclaimer {
    padding: 80px 30px;
    background-color: #ffffff;
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-text h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.narrow-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.story-visual {
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.story-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.testimonials-inline {
    padding: 80px 30px;
    background-color: #f9f9f9;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #d4a574;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.services-reveal {
    padding: 80px 30px;
    background-color: #ffffff;
}

.service-list {
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.select-service.selected {
    background-color: #d4a574;
    color: #1a1a1a;
}

.form-section {
    padding: 80px 30px;
    background-color: #f5f5f5;
}

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

.selected-service-display {
    padding: 20px;
    background-color: #d4a574;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.selected-service-display.show {
    display: block;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.disclaimer {
    background-color: #f9f9f9;
}

.disclaimer small {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d4a574;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .narrow-text h2 {
        font-size: 26px;
    }

    .narrow-text p {
        font-size: 16px;
    }

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

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