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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 80px;
    background-color: #fff;
}

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

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

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

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

.hero-intro {
    font-size: 22px;
    line-height: 1.5;
    color: #5a5a5a;
    font-style: italic;
}

.editorial-body {
    font-size: 19px;
    line-height: 1.8;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 30px;
    font-weight: 500;
}

.editorial-body p {
    margin-bottom: 24px;
}

.editorial-body h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 24px;
    font-weight: 700;
}

.editorial-body h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #2a2a2a;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
}

.editorial-body ul {
    margin-bottom: 24px;
    padding-left: 30px;
}

.editorial-body li {
    margin-bottom: 10px;
}

.inline-image {
    margin: 45px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 16px;
    color: #666;
    font-style: italic;
    background-color: #f5f5f5;
}

.services-preview {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a4a4a;
}

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

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

.service-card p {
    margin-bottom: 15px;
    font-size: 18px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    margin-top: 20px;
    margin-bottom: 15px;
}

.inline-cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

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

.form-wrapper {
    margin: 50px 0;
    padding: 40px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.disclaimer-section {
    margin-top: 50px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 3px solid #999;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

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

.page-header h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-info-block {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.contact-info-block:last-of-type {
    border-bottom: none;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-note {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
}

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

.service-detail:last-of-type {
    border-bottom: none;
}

.service-detail h2 {
    margin-top: 30px;
}

.price-info {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 25px 0;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

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

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

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

.thanks-details {
    margin: 30px 0;
    font-size: 18px;
}

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

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

.btn-primary {
    background-color: #2a2a2a;
    color: #fff;
    border: 2px solid #2a2a2a;
}

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

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

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

.legal-content .editorial-body {
    font-size: 17px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
}

.site-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 50px 40px 30px;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 30px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.btn-accept:hover {
    background-color: #5a5a5a;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.cookie-link {
    color: #d0d0d0;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: #fff;
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .editorial-container {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 19px;
    }

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

    .editorial-body {
        font-size: 17px;
    }

    .editorial-body h2 {
        font-size: 26px;
    }

    .form-wrapper {
        padding: 25px 20px;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}