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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    text-align: center;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: #fffacd;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #856404;
    border-bottom: 1px solid #ffeeba;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    margin-bottom: 4rem;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #d5e1df;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(44, 62, 80, 0.75);
    padding: 3rem;
    text-align: center;
    color: #ffffff;
    max-width: 600px;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.6;
}

.story-intro {
    margin-bottom: 4rem;
}

.narrow-content {
    width: 100%;
}

.intro-paragraph {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.text-link {
    color: #3498db;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.visual-break {
    margin: 4rem 0;
    background-color: #ecf0f1;
}

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

.problem-section {
    margin-bottom: 4rem;
}

.problem-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.insight-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #7f8c8d;
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid #3498db;
}

.services-preview {
    margin-bottom: 4rem;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.service-card {
    margin-bottom: 3rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #d5e1df;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 1rem;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-section {
    margin-bottom: 4rem;
    background-color: #ecf0f1;
    padding: 2rem;
}

.testimonial {
    margin-bottom: 2rem;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

.form-section {
    margin-bottom: 4rem;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-section > .narrow-content > p {
    margin-bottom: 2rem;
}

.booking-form {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin-bottom: 4rem;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #856404;
    margin-bottom: 0;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 0;
}

.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.thanks-service {
    background-color: #ecf0f1;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #3498db;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.page-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.page-container p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.page-container ul,
.page-container ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.page-container li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact-info {
    background-color: #ecf0f1;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .editorial-container,
    .page-container,
    .thanks-container {
        padding: 2rem 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        padding: 1rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-actions button {
        width: 100%;
    }
}