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

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

.ad-disclosure {
    background: #f4f4f4;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-content {
    background: #fff;
}

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

.header-image {
    height: 65vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.header-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    width: 100%;
    padding: 80px 30px 60px;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.header-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: normal;
}

.subtitle {
    font-size: 20px;
    opacity: 0.95;
    font-style: italic;
}

.content-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.intro-text {
    margin-bottom: 50px;
}

.lead {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-body p {
    font-size: 18px;
    margin-bottom: 25px;
}

.content-body h2 {
    font-size: 36px;
    margin: 60px 0 25px;
    font-weight: normal;
    line-height: 1.3;
}

.content-body h3 {
    font-size: 28px;
    margin: 45px 0 20px;
    font-weight: normal;
}

.inline-image {
    margin: 50px 0;
    width: calc(100% + 160px);
    margin-left: -80px;
}

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

.story-section {
    margin: 55px 0;
}

.inline-cta {
    background: #f8f8f8;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #333;
}

.inline-cta p {
    margin: 0;
    font-size: 17px;
}

.text-link {
    color: #1a1a1a;
    font-weight: bold;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.7;
}

.split-content {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 0 0 280px;
}

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

.services-preview {
    margin: 70px 0;
    padding: 60px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 15px;
}

.services-preview > p {
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

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

.service-card {
    background: #fafafa;
    padding: 35px;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 22px;
    margin: 0 0 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.select-service {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.select-service:hover {
    background: #000;
}

.select-service.selected {
    background: #2d7a3e;
}

.contact-form-section {
    margin: 70px 0;
}

.contact-form-section h2 {
    margin-bottom: 15px;
}

.contact-form-section > p {
    margin-bottom: 35px;
    color: #555;
}

.editorial-form {
    background: #f8f8f8;
    padding: 40px;
    margin-top: 30px;
}

.form-notice {
    background: #fff3cd;
    padding: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #ffb100;
    font-size: 15px;
    display: none;
}

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

.form-notice.success {
    background: #d4edda;
    border-left-color: #28a745;
}

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

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

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

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

.submit-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.disclaimer {
    background: #f0f0f0;
    padding: 25px;
    margin: 60px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid #ddd;
}

.disclaimer strong {
    color: #2c2c2c;
}

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

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background: #28a745;
    color: #fff;
}

.cookie-btn.reject {
    background: #6c757d;
    color: #fff;
}

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

    .nav-links {
        gap: 20px;
    }

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

    .subtitle {
        font-size: 18px;
    }

    .inline-image {
        width: 100%;
        margin-left: 0;
    }

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

    .split-image {
        flex: 1;
        width: 100%;
    }

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

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