* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #495057;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.article-meta {
    font-size: 19px;
    color: #6b7280;
    line-height: 1.6;
}

.article-image {
    margin: 50px 0;
    background-color: #f3f4f6;
}

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

.content-block {
    margin-bottom: 45px;
}

.content-block h2 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    margin-top: 50px;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 24px;
}

.inline-figure {
    margin: 40px 0;
    background-color: #f9fafb;
}

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

.inline-cta-block {
    background-color: #f9fafb;
    padding: 35px 40px;
    margin: 50px 0;
    border-left: 4px solid #1a1a1a;
}

.inline-cta-block h3 {
    font-size: 24px;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 600;
}

.cta-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 17px;
    font-weight: 500;
    transition: opacity 0.2s;
}

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

.insight-section {
    margin: 60px 0;
}

.insight-section h2 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.insight-card {
    background-color: #ffffff;
    padding: 0;
}

.insight-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.cta-centered {
    text-align: center;
    padding: 50px 0;
    margin: 60px 0;
    background-color: #f9fafb;
}

.cta-centered h3 {
    font-size: 28px;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.services-reveal {
    margin: 60px 0;
}

.service-detailed {
    margin-bottom: 55px;
    padding-bottom: 55px;
    border-bottom: 1px solid #e5e7eb;
}

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

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

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 18px;
}

.price {
    display: block;
    font-size: 26px;
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 25px;
}

.service-image {
    margin-top: 30px;
    background-color: #f3f4f6;
}

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

.form-section {
    margin: 70px 0;
    padding: 50px 45px;
    background-color: #f9fafb;
}

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

.form-section > p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.7;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

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

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

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

.disclaimer-section {
    margin: 60px 0;
    padding: 35px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
}

.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 25px 30px;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    opacity: 0.8;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.about-hero,
.services-hero,
.contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
}

.about-section {
    margin-bottom: 70px;
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-image {
    background-color: #f3f4f6;
}

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

.expertise-section {
    margin-bottom: 70px;
}

.expertise-section h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.expertise-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.expertise-item h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.expertise-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

.team-section {
    margin-bottom: 70px;
}

.team-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.work-process p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 22px;
}

.work-image {
    margin-top: 40px;
    background-color: #f3f4f6;
}

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

.values-section {
    margin-bottom: 70px;
}

.values-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.values-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 22px;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

.services-overview {
    margin-bottom: 50px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.service-header h2 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
    flex: 1;
}

.service-price {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 700;
    white-space: nowrap;
}

.service-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-body h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-body ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 10px;
}

.service-timeline {
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
    margin-top: 20px;
}

.service-cta-section {
    margin-top: 60px;
    text-align: center;
    padding: 50px 40px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.service-cta-section h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-cta-section p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 30px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 35px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.email-text {
    color: #4b5563;
}

.contact-note {
    background-color: #f9fafb;
    padding: 25px;
    border-left: 4px solid #1a1a1a;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.contact-approach h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-approach p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.location-section {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

.location-section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.thanks-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-message {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.service-confirmation p {
    font-size: 17px;
    color: #166534;
    font-weight: 500;
}

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

.next-steps h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.next-steps ol {
    margin-left: 25px;
}

.next-steps ol li {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 15px;
}

.thanks-info {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: opacity 0.2s;
}

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

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

.button-secondary {
    background-color: #f3f4f6;
    color: #1a1a1a;
    border: 1px solid #d1d5db;
}

.button-secondary:hover {
    background-color: #e5e7eb;
}

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

.legal-page h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

.legal-section h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 10px;
}

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

    .content-block h2 {
        font-size: 26px;
    }

    .nav-menu {
        gap: 20px;
    }

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

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

    .service-header {
        flex-direction: column;
    }

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

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }
}