* {
    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;
}

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

.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
}

.story-header {
    margin-bottom: 50px;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.story-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.story-image {
    margin: 50px 0;
}

.story-image img,
.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.inline-image {
    margin: 40px 0;
}

.story-content {
    margin: 40px 0;
}

.story-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.story-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 30px 0 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.testimonial-inline {
    background-color: #f8f8f8;
    padding: 30px 35px;
    margin: 45px 0;
    border-left: 4px solid #2c2c2c;
}

.testimonial-inline blockquote {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    color: #666;
}

.service-cards-editorial {
    margin: 50px 0;
}

.service-card {
    margin-bottom: 45px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 0;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 15px;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 20px 25px 25px;
}

.cta-inline {
    background-color: #2c2c2c;
    color: #fff;
    padding: 40px 35px;
    margin: 50px 0;
    text-align: center;
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-inline p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #2c2c2c;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
}

.booking-section {
    background-color: #fff;
    padding: 50px 40px;
    margin: 60px 0;
    border: 1px solid #e0e0e0;
}

.booking-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.booking-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', serif;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: #2c2c2c;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #f8f8f8;
    padding: 30px;
    margin-top: 60px;
    border: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 50px 40px 30px;
    margin-top: 80px;
}

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

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

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

.footer-links a:hover {
    color: #fff;
}

.footer-content p {
    font-size: 13px;
    color: #999;
}

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

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

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

.cookie-content p {
    font-size: 15px;
    flex: 1;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #fff;
    color: #1a1a1a;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.contact-content {
    margin: 40px 0;
}

.contact-info-block {
    margin-bottom: 45px;
}

.contact-info-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.contact-info-block address {
    font-size: 17px;
    line-height: 1.8;
    font-style: normal;
    color: #3a3a3a;
}

.email-display {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
}

.contact-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.hours-list,
.service-areas {
    list-style: none;
    margin: 15px 0;
}

.hours-list li,
.service-areas li {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    padding: 5px 0;
}

.service-detail {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    gap: 25px;
}

.service-detail.reverse {
    flex-direction: column;
}

.service-image {
    width: 100%;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-info h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

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

.thanks-container {
    padding: 80px 30px;
}

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.submission-summary h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.submission-summary p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.thanks-next-steps,
.thanks-important {
    text-align: left;
    margin-bottom: 35px;
}

.thanks-next-steps h2,
.thanks-important h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.thanks-next-steps p,
.thanks-important p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.thanks-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-page {
    max-width: 800px;
}

.legal-updated {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.legal-content {
    margin: 35px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    list-style-type: disc;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #000;
}

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .story-header h1 {
        font-size: 32px;
    }

    .story-intro {
        font-size: 18px;
    }

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

    .thanks-cta {
        flex-direction: column;
    }

    .cta-button-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}