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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c2c2c;
}

.editorial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
}

.story-section {
    margin-bottom: 60px;
}

.story-text {
    max-width: 680px;
    margin: 0 auto;
}

.story-text.centered {
    text-align: left;
}

.story-text h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a1a1a;
}

.story-text h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
    color: #1a1a1a;
}

.story-text h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
    color: #1a1a1a;
}

.lead {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.story-text ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.story-text li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.hero-story {
    margin-top: 0;
}

.hero-image-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.inline-image {
    width: 100%;
    max-width: 680px;
    margin: 35px auto;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.inline-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #1a1a1a;
}

.inline-cta.secondary {
    background-color: #666;
    margin-left: 12px;
}

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

.bg-light {
    background-color: #fafafa;
    padding: 50px 30px;
    margin-left: -30px;
    margin-right: -30px;
}

.benefit-list {
    margin-top: 40px;
}

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

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

.services-inline {
    margin-top: 50px;
}

.intro-services {
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #555;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 680px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 25px 25px 10px;
    margin: 0;
    font-size: 22px;
}

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

.service-details {
    padding: 0 25px;
    margin: 20px 0;
    list-style-position: inside;
}

.service-details li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
}

.price {
    font-weight: bold;
    font-size: 20px;
    color: #1a1a1a;
    padding: 15px 25px 10px;
}

.select-service {
    margin: 15px 25px 25px;
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: inherit;
}

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

.submit-btn {
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-text {
    margin-top: 50px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 3px solid #ccc;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 8px;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 30px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #666;
    color: #ffffff;
}

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

.contact-info {
    margin-top: 30px;
}

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

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

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

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

.legal-page .story-text {
    max-width: 780px;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 60px 0;
}

.thanks-icon {
    font-size: 60px;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    padding: 25px;
    background-color: #ffffff;
    border-left: 4px solid #2c2c2c;
}

.step-item h3 {
    margin-top: 0;
    font-size: 18px;
}

.step-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.thanks-links {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

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

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

    .story-text h1 {
        font-size: 30px;
    }

    .story-text h2 {
        font-size: 24px;
    }

    .lead {
        font-size: 18px;
    }

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

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

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

    .inline-cta.secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}
