/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.brand {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-left: auto;
}

/* Editorial Content - Main Layout */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-text {
    margin-bottom: 3rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

/* Text Blocks */
.text-block {
    margin-bottom: 3rem;
}

.text-block h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.text-block h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c2c2c;
    font-weight: 600;
}

.text-block h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.text-block p {
    margin-bottom: 1.5rem;
}

.text-block ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.text-block ul li {
    margin-bottom: 0.8rem;
}

/* Images */
.content-image,
.content-image-small {
    margin: 3rem 0;
    background-color: #e8e8e8;
}

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

.content-image-small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Inline CTAs */
.inline-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cta-link {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-link:hover {
    color: #0d3e52;
    border-color: #0d3e52;
}

/* Service Preview */
.service-preview {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #2c2c2c;
}

.service-preview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #1a5f7a;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-top: 1rem;
}

.btn-secondary {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #1a5f7a;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border: 2px solid #1a5f7a;
    background-color: transparent;
    text-align: center;
    margin: 2rem auto;
    display: block;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

/* Services List */
.services-list {
    margin: 3rem 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item:nth-child(even) {
    flex-direction: column-reverse;
}

.service-image {
    background-color: #e8e8e8;
}

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

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1rem;
}

.service-price {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-top: 1.5rem;
}

/* Forms */
.form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    color: #2c2c2c;
}

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

.btn-primary {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #1a5f7a;
    border: none;
    padding: 1rem 3rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d3e52;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    line-height: 1.8;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
}

/* Disclaimer */
.disclaimer-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

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

/* Footer */
.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

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

.footer-column h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #1a5f7a;
    padding: 1.5rem;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #1a5f7a;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #1a5f7a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0d3e52;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .ad-disclosure {
        margin-left: 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .service-item {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .service-image {
        flex: 0 0 45%;
    }

    .service-content {
        flex: 1;
    }
}