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

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

.ad-disclosure {
    background-color: #ecf0f1;
    color: #7f8c8d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-size: 16px;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 80%;
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 52px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero-subtext {
    font-size: 20px;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.content-narrow {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 30px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #34495e;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-narrow h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.inline-image {
    margin: 50px 0;
    text-align: center;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #ecf0f1;
}

.image-caption {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.quote-block {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #16a085;
    font-style: italic;
}

.quote-block p {
    font-size: 19px;
    margin-bottom: 10px;
}

.quote-block cite {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.services-inline {
    margin: 50px 0;
}

.service-card-inline {
    margin-bottom: 45px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-card-inline h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card-inline p {
    margin-bottom: 12px;
}

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: #16a085;
    margin: 15px 0;
}

.cta-inline {
    background-color: #16a085;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-inline:hover {
    background-color: #138d75;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.testimonial-inline p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-inline cite {
    display: block;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.editorial-form {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.editorial-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.editorial-form textarea {
    resize: vertical;
}

.form-submit {
    background-color: #16a085;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.form-submit:hover {
    background-color: #138d75;
}

.disclaimer-text {
    margin-top: 50px;
    padding: 25px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer-text strong {
    color: #856404;
}

.main-footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 50px 40px 20px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #16a085;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #5a6c7d;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
}

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

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cookie-accept {
    background-color: #16a085;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #138d75;
}

.cookie-reject {
    background-color: #95a5a6;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    text-align: center;
    padding: 60px 30px;
    background-color: #ecf0f1;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.header-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    font-style: italic;
}

.cta-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #16a085;
    color: #fff;
    text-align: center;
    border-radius: 6px;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #16a085;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

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

.service-detail {
    display: flex;
    gap: 40px;
    margin: 60px 0;
    align-items: flex-start;
}

.service-image-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-highlights {
    font-size: 16px;
    font-style: italic;
    color: #7f8c8d;
}

.service-price-large {
    font-size: 32px;
    font-weight: bold;
    color: #16a085;
    margin: 20px 0;
}

.booking-section {
    margin-top: 80px;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.booking-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-info-block {
    margin: 50px 0;
}

.contact-detail {
    margin-bottom: 30px;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.email-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.opening-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.contact-guidelines {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.faq-section {
    margin: 50px 0;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #16a085;
}

.location-note {
    margin-top: 50px;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.thanks-page {
    text-align: center;
    padding: 80px 30px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #16a085;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.service-confirmation {
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 18px;
}

.next-steps {
    text-align: left;
    margin: 50px auto;
    max-width: 600px;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 17px;
}

.thanks-info {
    margin: 40px 0;
    padding: 20px;
    background-color: #fff3cd;
    border-radius: 4px;
    font-size: 16px;
}

.thanks-actions {
    margin: 50px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-button-secondary:hover {
    background-color: #7f8c8d;
}

.preparation-tips {
    text-align: left;
    margin: 50px auto;
    max-width: 600px;
}

.preparation-tips ul {
    padding-left: 25px;
}

.preparation-tips li {
    margin-bottom: 12px;
    font-size: 17px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

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

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

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

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

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

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}