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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    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: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-content {
    background-color: #fff;
}

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

.hero-image-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-centered {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.hero-text-centered h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-text-centered .lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

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

.content-narrow p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: #333;
}

.content-narrow h2 {
    font-size: 2rem;
    margin-top: 60px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

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

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #2c3e50;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.services-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 35px;
    border: 1px solid #e0e0e0;
}

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

.service-card p {
    margin-bottom: 15px;
    color: #555;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    padding: 14px 30px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

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

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

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

.form-section .btn-primary {
    width: 100%;
}

.final-cta {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.final-cta p {
    color: #ddd;
    margin-bottom: 30px;
}

.final-cta .btn-primary {
    background-color: #fff;
    color: #2c3e50;
}

.final-cta .btn-primary:hover {
    background-color: #f0f0f0;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

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

.references-section {
    padding: 40px 0;
}

.references-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
}

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

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px;
    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;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons button {
    padding: 12px 30px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-text-centered h1 {
        font-size: 2rem;
    }

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

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

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