* {
    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;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

.hero-editorial {
    text-align: center;
    margin-bottom: 56px;
}

.hero-image-wrapper {
    margin-bottom: 32px;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

.hero-editorial h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

.article-body {
    font-size: 18px;
}

.intro-section {
    margin-bottom: 48px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body h2 {
    font-size: 32px;
    margin-top: 56px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.inline-image {
    margin: 48px 0;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

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

figcaption {
    padding: 12px 16px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
    background-color: #f9f9f9;
}

.story-section,
.insight-section,
.trust-section {
    margin-bottom: 48px;
}

.highlight-box {
    background-color: #f8f8f8;
    padding: 32px;
    margin: 40px 0;
    border-left: 4px solid #333;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 19px;
    color: #333;
    line-height: 1.7;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.inline-cta {
    margin: 32px 0;
    text-align: center;
}

.cta-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

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

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

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.service-card p {
    padding: 0 20px;
    margin-bottom: 12px;
    font-size: 16px;
}

.service-card .price {
    padding: 0 20px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
}

.select-service {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: calc(100% - 40px);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.testimonial {
    margin: 40px 0;
    padding: 32px;
    background-color: #f9f9f9;
    border-left: 3px solid #666;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}

.form-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #e0e0e0;
}

.contact-form {
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

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

.submit-btn {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    margin-top: 80px;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 32px;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #444;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #333;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #333;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.cookie-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-btn.reject:hover {
    background-color: #ccc;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-detailed {
    margin-top: 48px;
}

.service-detail {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-image {
    margin-bottom: 24px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.service-duration,
.service-includes {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.price-display {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0;
}

.contact-information {
    margin: 48px 0;
}

.contact-block {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-block:last-child {
    border-bottom: none;
}

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

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

.visit-section {
    margin: 48px 0;
}

.contact-note {
    margin-top: 48px;
    padding: 24px;
    background-color: #f8f8f8;
    border-left: 4px solid #999;
}

.contact-note p {
    margin-bottom: 0;
    font-size: 16px;
    color: #555;
}

.thanks-section {
    text-align: center;
    padding: 64px 0;
}

.thanks-section h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.thanks-info {
    margin: 40px 0;
    font-size: 18px;
}

.thanks-info p {
    margin-bottom: 20px;
}

.next-steps {
    margin: 48px auto;
    max-width: 600px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.next-steps ol {
    padding-left: 24px;
    font-size: 17px;
}

.next-steps li {
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-cta {
    margin-top: 56px;
}

.thanks-cta p {
    margin-bottom: 24px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

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

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

.cta-button.secondary {
    background-color: #666;
}

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

.legal-page .article-body {
    font-size: 16px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    margin-top: 48px;
    font-size: 26px;
}

.legal-section h3 {
    margin-top: 24px;
    font-size: 20px;
}

.legal-section ul {
    padding-left: 24px;
    margin: 16px 0;
}

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

.url-display {
    color: #1a1a1a;
    word-break: break-all;
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    margin-top: 0;
}

.values-section,
.team-section {
    margin-bottom: 48px;
}

.cta-section {
    margin-top: 64px;
    padding: 40px;
    background-color: #f8f8f8;
    text-align: center;
    border-radius: 4px;
}

.cta-section h2 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .subtitle {
        font-size: 18px;
    }

    .article-body {
        font-size: 17px;
    }

    .lead-text {
        font-size: 20px;
    }

    .article-body h2 {
        font-size: 28px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}