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

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

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-nav {
    background-color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.story-content {
    font-size: 19px;
    line-height: 1.8;
}

.intro-section,
.problem-section,
.solution-section,
.trust-section,
.cta-section,
.values-section,
.approach-section,
.team-section,
.info-section,
.faq-section,
.contact-info,
.next-steps {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 25px;
    font-weight: 400;
}

.story-content p {
    margin-bottom: 25px;
}

.story-content h2 {
    font-size: 36px;
    margin: 50px 0 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content h3 {
    font-size: 26px;
    margin: 35px 0 20px;
    color: #2a2a2a;
    font-weight: 600;
}

.story-content h4 {
    font-size: 21px;
    margin: 25px 0 15px;
    color: #333;
    font-weight: 600;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
    background-color: #e8e8e8;
    object-fit: cover;
}

.insight-box {
    background-color: #f5f5f5;
    border-left: 4px solid #4a90e2;
    padding: 25px 30px;
    margin: 35px 0;
    font-style: italic;
}

.insight-box p {
    margin: 0;
    font-size: 20px;
    color: #444;
}

.inline-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    margin: 30px 0;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

.inline-cta:hover {
    background-color: #357abd;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.testimonial-inline blockquote {
    margin: 0;
    font-style: italic;
    color: #444;
}

.testimonial-inline p {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-style: normal;
    color: #666;
    font-size: 17px;
}

.services-preview,
.services-listing {
    margin: 60px 0;
}

.service-card {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 20px;
}

.service-content ul {
    margin: 20px 0 20px 30px;
    list-style-type: disc;
}

.service-content li {
    margin-bottom: 10px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 25px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    padding: 14px 36px;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #357abd;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 17px;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #4a90e2;
    color: #fff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.btn-secondary:hover {
    background-color: #4a90e2;
    color: #fff;
}

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

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

.faq-item {
    margin-bottom: 35px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-detail {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2a2a2a;
}

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

.thanks-content {
    text-align: center;
    padding: 60px 0;
}

.thanks-icon {
    font-size: 80px;
    color: #4a90e2;
    margin-bottom: 30px;
}

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

.step-item {
    margin-bottom: 35px;
    text-align: left;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 80px auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    cursor: pointer;
    color: #888;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.modal-content form {
    display: flex;
    flex-direction: column;
}

.selected-service-display {
    background-color: #f5f5f5;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 17px;
}

.modal-content label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.modal-content input,
.modal-content textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #2a2a2a;
    color: #ddd;
    padding: 60px 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bbb;
}

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

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4a90e2;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #333;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #888;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #4a90e2;
    color: #fff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

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

.cookie-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.legal-page .story-content {
    font-size: 17px;
}

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

.legal-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #2a2a2a;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0 15px 30px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section a {
    color: #4a90e2;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.last-updated {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 16px;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.cookies-table tr:nth-child(even) {
    background-color: #fafafa;
}

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

    .hero-content h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 19px;
    }

    .story-content h2 {
        font-size: 28px;
    }

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

    .nav-links {
        gap: 15px;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
    }

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