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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

.article-hero {
    margin-bottom: 48px;
}

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

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

.main-heading {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 16px;
}

.story-section {
    font-size: 18px;
    line-height: 1.8;
}

.story-section p {
    margin-bottom: 24px;
    color: #3a3a3a;
}

.story-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.inline-image {
    width: 100%;
    margin: 40px 0;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

.emphasis-quote {
    border-left: 4px solid #1a1a1a;
    padding-left: 24px;
    margin: 40px 0;
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: #2c2c2c;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.citation:hover {
    color: #004499;
}

.cta-inline {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 32px;
    margin: 48px 0;
}

.cta-inline h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cta-inline p {
    margin-bottom: 20px;
    color: #4a4a4a;
}

.cta-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
}

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

.services-section {
    margin-top: 64px;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.services-section > p {
    text-align: center;
    font-size: 18px;
    color: #555555;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    transition: box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    margin-bottom: 20px;
    background-color: #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    font-size: 15px;
    color: #555555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #1a1a1a;
    font-weight: bold;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0;
}

.select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

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

.form-container {
    max-width: 640px;
    margin: 64px auto;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.selected-service-display {
    margin-bottom: 32px;
    padding: 16px;
    background-color: #f5f5f5;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-button {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #333333;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-section p {
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-disclaimer {
    flex-basis: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #333333;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999999;
}

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

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s;
}

.references-list a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #1a1a1a;
    padding: 24px 32px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #2c2c2c;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

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

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

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.last-updated {
    font-size: 14px;
    color: #777777;
    font-style: italic;
}

.legal-page {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: #004499;
    text-decoration: underline;
}

.contact-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-block {
    margin-bottom: 48px;
}

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

.contact-detail h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-image {
    width: 100%;
    margin: 40px 0;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-note {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 32px;
    margin-top: 48px;
}

.contact-note h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.contact-note a {
    color: #0066cc;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-page {
    max-width: 640px;
    text-align: center;
}

.thanks-content {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 64px 48px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #555555;
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 40px;
}

.selected-service-info {
    font-size: 16px;
    padding: 16px;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.steps-list {
    padding-left: 24px;
}

.steps-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

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

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

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

.thanks-note {
    font-size: 14px;
    color: #777777;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .content-wrapper {
        padding: 40px 20px;
    }

    .main-heading {
        font-size: 32px;
    }

    .intro-text {
        font-size: 18px;
    }

    .story-section {
        font-size: 16px;
    }

    .story-section h2 {
        font-size: 26px;
    }

    .emphasis-quote {
        font-size: 18px;
        padding-left: 16px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}