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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.article-lead {
    font-size: 1.25rem;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

.article-body {
    font-size: 1.125rem;
}

.article-body section {
    margin-bottom: 3rem;
}

.article-body h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.article-body h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #2a2a2a;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
}

.inline-image {
    margin: 2.5rem 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.callout-box {
    background-color: #f7f7f7;
    border-left: 4px solid #333;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.callout-box p {
    margin-bottom: 0;
}

.insight-grid {
    margin-top: 2rem;
}

.insight-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.insight-item:last-child {
    border-bottom: none;
}

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

.inline-cta {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    text-align: center;
}

.inline-cta p {
    margin-bottom: 0;
}

.text-link {
    color: #1a1a1a;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

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

blockquote.testimonial {
    border-left: 3px solid #ddd;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #444;
}

blockquote.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.audience-list {
    list-style: none;
    padding-left: 0;
}

.audience-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.audience-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.disclaimer-section {
    background-color: #fff9e6;
    border: 1px solid #f0e6cc;
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.form-section {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.contact-form {
    margin-top: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.services-grid-section {
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-radius: 4px;
}

.service-card h2 {
    margin-top: 0;
    font-size: 1.625rem;
    color: #1a1a1a;
}

.service-description {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-details ul {
    margin-top: 1rem;
}

.service-duration,
.service-format,
.service-price {
    margin-bottom: 0.75rem;
    font-family: 'Arial', sans-serif;
}

.service-price {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-top: 1.25rem;
}

.service-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.additional-info {
    background-color: #f9f9f9;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 4px;
}

.inline-cta-link {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-section {
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-block h3 {
    margin-top: 0;
    font-size: 1.25rem;
    font-family: 'Arial', sans-serif;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.directions-list {
    list-style: none;
    padding-left: 0;
}

.directions-list li {
    margin-bottom: 0.75rem;
}

.faq-section {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.thanks-container {
    text-align: center;
}

.thanks-header {
    margin-bottom: 2rem;
}

.thanks-lead {
    font-size: 1.125rem;
    color: #666;
}

.thanks-content {
    text-align: left;
    margin-top: 2rem;
}

.service-confirmation {
    background-color: #f0f7f0;
    border: 1px solid #d0e7d0;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.next-steps {
    margin-top: 2rem;
}

.step-item {
    margin-bottom: 2rem;
}

.step-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
    font-family: 'Arial', sans-serif;
}

.thanks-note {
    background-color: #fff9e6;
    border: 1px solid #f0e6cc;
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.additional-resources {
    margin-top: 3rem;
    text-align: left;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.resource-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f0f0f0;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.resource-link:hover {
    background-color: #e0e0e0;
}

.legal-content .article-body {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.legal-content h3 {
    font-size: 1.25rem;
}

.philosophy-grid,
.philosophy-item {
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #1a1a1a;
}

.main-footer {
    background-color: #2a2a2a;
    color: #e0e0e0;
    margin-top: 5rem;
    padding: 3rem 1.5rem 1.5rem;
}

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

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.875rem;
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1500;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-cta a:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-lead {
        font-size: 1.125rem;
    }

    .article-body {
        font-size: 1.0625rem;
    }

    .article-body h2 {
        font-size: 1.625rem;
    }

    .article-body h3 {
        font-size: 1.25rem;
    }

    .nav-menu {
        gap: 1rem;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .editorial-content {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-menu {
        font-size: 0.875rem;
    }
}