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

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

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

.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: 300px;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: white;
}

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.editorial-content {
    background-color: #fdfbf7;
}

.story-flow {
    max-width: 100%;
}

.hero-story {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 8px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 22px;
    font-style: italic;
}

.intro-narrative,
.services-story,
.booking-narrative,
.trust-section,
.final-cta-story,
.disclaimer-section,
.references-section {
    padding: 80px 20px;
}

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

.opening-line {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.narrow-column p {
    margin-bottom: 24px;
    font-size: 18px;
}

.narrow-column h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.inline-image {
    margin: 50px 0;
    background-color: #ecf0f1;
}

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

.inline-image figcaption {
    padding: 15px;
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
    text-align: center;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #ecf0f1;
    border-left: 4px solid #27ae60;
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
}

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

.services-story {
    background-color: #ffffff;
}

.intro-services {
    text-align: center;
    font-size: 19px;
    margin-bottom: 50px;
    color: #7f8c8d;
}

.services-grid-editorial {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #fdfbf7;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 300px;
    background-color: #ecf0f1;
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    margin-top: 20px;
}

.select-service {
    margin-top: 20px;
    padding: 12px 28px;
    background-color: #27ae60;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #229954;
}

.booking-narrative {
    background-color: #f8f9fa;
}

.form-container-editorial {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
}

.selected-service-display {
    padding: 15px;
    background-color: #ecf0f1;
    margin-bottom: 30px;
    border-radius: 4px;
}

.selected-service-display strong {
    color: #27ae60;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dce0e3;
    font-size: 16px;
    font-family: inherit;
    border-radius: 4px;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    background-color: #ffffff;
}

.testimonial-block {
    margin: 40px 0;
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
}

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

.final-cta-story {
    background-color: #ecf0f1;
    text-align: center;
}

.cta-link {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 40px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #229954;
}

.disclaimer-section {
    background-color: #fff9e6;
    border-top: 2px solid #f39c12;
    border-bottom: 2px solid #f39c12;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #7f8c8d;
}

.references-section {
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 15px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

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

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

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

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

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

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

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

.footer-column a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

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

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .hero-text-overlay p {
        font-size: 18px;
    }

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

    .opening-line {
        font-size: 19px;
    }

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

    .form-container-editorial {
        padding: 25px;
    }

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