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

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

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

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

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

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

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

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.inline-image {
    margin: 50px 0;
    background-color: #e8e8e8;
}

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

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

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.content-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.content-block h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

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

.highlight-box {
    background-color: #f5f5f5;
    padding: 35px;
    border-left: 4px solid #2c2c2c;
    margin: 50px 0;
}

.pillar {
    margin: 30px 0;
    padding-left: 20px;
}

.cta-inline {
    text-align: center;
    margin: 60px 0;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.service-cards {
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 20px 0;
}

.select-service {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-wrapper {
    background-color: #f9f9f9;
    padding: 40px;
    border: 1px solid #e0e0e0;
    margin-top: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

.submit-button {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #f0f0f0;
    padding: 30px;
    margin-top: 60px;
    border-top: 1px solid #ddd;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.site-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.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: 0.95rem;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c2c2c;
    padding: 25px;
    display: none;
    z-index: 1000;
}

.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;
    min-width: 300px;
    font-size: 0.95rem;
    color: #2c2c2c;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #2c2c2c;
    color: #fff;
}

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

.cookie-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

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

    .intro-text {
        font-size: 1.1rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

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

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