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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    background-color: #f8f9fa;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6c757d;
    background-color: #fff3cd;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.main-nav {
    display: flex;
    gap: 1.8rem;
}

.main-nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #007bff;
}

.hero-editorial {
    background-color: #fafafa;
    padding: 4rem 2rem;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.hero-content-narrow h1 {
    font-size: 2.3rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    object-fit: cover;
}

.inline-image-right {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    object-fit: cover;
}

.story-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 1.9rem;
    color: #1a1a1a;
    margin-bottom: 1.3rem;
    margin-top: 2.5rem;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.content-narrow p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.insight-section {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.insight-box {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #4299e1;
    margin-bottom: 2rem;
}

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

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wide h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-editorial {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card-editorial:hover {
    transform: translateY(-4px);
}

.service-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.3rem;
    color: #2c5282;
    font-weight: 700;
    margin: 1.5rem 0;
}

.cta-inline {
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #2c5282;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: #edf2f7;
}

.testimonial-inline blockquote {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.2rem;
    font-style: italic;
    color: #2d3748;
    line-height: 1.7;
    padding: 2rem;
    border-left: 4px solid #4299e1;
    background-color: #ffffff;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #4a5568;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.main-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    outline: none;
    border-color: #3182ce;
}

.submit-btn {
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f7fafc;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #3182ce;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2c5282;
}

.cookie-reject {
    background-color: transparent;
    color: #cbd5e0;
    border: 2px solid #cbd5e0;
}

.cookie-reject:hover {
    background-color: #4a5568;
    color: #ffffff;
}

.page-hero {
    background-color: #edf2f7;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
}

.about-story {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.team-approach {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.mission-statement {
    padding: 5rem 2rem;
    background-color: #edf2f7;
}

.large-quote {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-style: italic;
    color: #2d3748;
    line-height: 1.6;
    padding: 2.5rem;
    border-left: 6px solid #4299e1;
    background-color: #ffffff;
    margin-bottom: 2rem;
}

.large-quote p {
    margin: 0;
}

.services-detail {
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.detail-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price {
    font-size: 1.4rem;
    color: #2c5282;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.cta-button {
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

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

.contact-info-section {
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.contact-block p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.contact-image {
    flex: 1;
}

.faq-section {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f7fafc;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 2.5rem;
}

.thanks-details h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.next-steps {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.next-steps li {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-details p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

#selectedServiceMessage {
    font-size: 1.1rem;
    color: #2c5282;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button-primary {
    background-color: #3182ce;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.button-primary:hover {
    background-color: #2c5282;
}

.button-secondary {
    background-color: transparent;
    color: #3182ce;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3182ce;
    transition: all 0.3s ease;
    display: inline-block;
}

.button-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-updated {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-content-narrow h1 {
        font-size: 1.8rem;
    }

    .content-narrow h2 {
        font-size: 1.6rem;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .values-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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