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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

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

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8eef2;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
    padding: 60px 24px 40px;
}

.hero-text-overlay h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.content-section {
    padding: 60px 24px;
}

.narrow {
    max-width: 680px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.opening-paragraph {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 36px;
    color: #34495e;
}

h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #1a5f7a;
}

h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

p {
    margin-bottom: 24px;
}

ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

.inline-image {
    margin: 48px 0;
    background-color: #f5f7f9;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #1a5f7a;
    color: #fff;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #145266;
    cursor: pointer;
}

.btn-secondary {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #d5dbdd;
    cursor: pointer;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 80px 24px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
    color: #555;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e8eef2;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a5f7a;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0;
}

.btn-select-service {
    background-color: #1a5f7a;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: background-color 0.2s;
    margin-top: 16px;
}

.btn-select-service:hover {
    background-color: #145266;
    cursor: pointer;
}

.form-section {
    background-color: #fff;
    padding: 80px 24px;
}

.contact-form {
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
    min-width: 280px;
}

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

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

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

.btn-submit {
    background-color: #27ae60;
    color: #fff;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #229954;
    cursor: pointer;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 40px 24px;
    border-top: 2px solid #ffd54f;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    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: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background-color: #229954;
    cursor: pointer;
}

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
    cursor: pointer;
}

.thanks-section {
    padding: 100px 24px;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin: 24px 0 36px;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
    font-size: 18px;
    color: #2e7d32;
}

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

.services-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
}

.service-detail-card {
    margin-bottom: 80px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    background-color: #f5f7f9;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    margin-top: 0;
    color: #1a5f7a;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0 24px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f5f7f9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-text-overlay h1 {
        font-size: 28px;
    }

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

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

    .form-row {
        flex-direction: column;
    }

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