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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #e94560;
    --accent-color: #0f3460;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-cookie-accept {
    background: var(--secondary-color);
    color: var(--white);
}

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

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

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

.nav-minimal {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.editorial-flow {
    max-width: 100%;
    margin: 0 auto;
}

.editorial-hero {
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-narrow h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtext {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.6;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-color);
}

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

.content-narrow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.content-narrow h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.inline-cta-box {
    background: var(--light-bg);
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--secondary-color);
}

.inline-cta-box.secondary {
    background: var(--accent-color);
    color: var(--white);
    border-left: 4px solid var(--secondary-color);
}

.inline-cta-box.secondary .cta-text {
    color: var(--white);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.btn-inline {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-inline:hover {
    background: #d13851;
}

.btn-inline-alt {
    display: inline-block;
    background: var(--white);
    color: var(--accent-color);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-inline-alt:hover {
    background: var(--light-gray);
}

.content-wide-image {
    margin: 60px 0;
}

.section-img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    margin-top: 12px;
    font-style: italic;
}

.editorial-quote {
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    color: var(--accent-color);
    border-left: 3px solid var(--secondary-color);
    padding-left: 24px;
    margin: 40px 0;
}

.highlighted-section {
    background: var(--light-bg);
    padding: 50px 40px;
    margin: 60px 0;
}

.reason-block {
    margin-bottom: 30px;
}

.reason-block h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.reason-block p {
    font-size: 17px;
    line-height: 1.6;
}

.content-wide-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.testimonial-inline {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: var(--light-gray);
}

.services-reveal {
    background: var(--light-bg);
    padding: 80px 0;
    margin-top: 80px;
}

.services-list-editorial {
    margin-top: 50px;
}

.service-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 0;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 20px 0;
}

.btn-select-service {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-color);
}

.btn-select-service.selected {
    background: var(--secondary-color);
}

.form-section {
    max-width: 680px;
    margin: 80px auto;
    padding: 0 20px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-section > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray);
}

.editorial-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.final-thought {
    padding-top: 60px;
    padding-bottom: 80px;
}

.final-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-final {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.btn-final:hover {
    background: var(--accent-color);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    font-weight: 600;
}

.sticky-btn:hover {
    background: #d13851;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-gray);
}

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

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

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--light-gray);
}

@media (max-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 18px;
    }

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

    .editorial-quote {
        font-size: 20px;
    }

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

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 20px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-page .thanks-message {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color);
}

.thanks-page .service-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-page .service-info h2 {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.thanks-page .btn-back {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.thanks-page .btn-back:hover {
    background: #d13851;
}