* {
    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: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: #ffffff;
    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: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a5f7a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s;
}

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

.editorial-layout {
    background-color: #ffffff;
    margin: 40px auto 60px;
    max-width: 900px;
    padding: 0 30px;
}

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

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

.hero-image-wrapper {
    margin: 0 -30px 40px;
    background-color: #e9ecef;
}

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

h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 20px;
    color: #2c3e50;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 35px 0 15px;
    color: #34495e;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    line-height: 1.4;
    margin: 25px 0 12px;
    color: #495057;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #495057;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.inline-image-section {
    margin: 45px 0;
    background-color: #f8f9fa;
    padding: 15px;
}

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

.cta-inline {
    margin: 50px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #1a5f7a;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border: 2px solid #1a5f7a;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

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

.services-preview {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
}

.service-block {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

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

.service-block img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    object-fit: cover;
    background-color: #dee2e6;
}

.service-block h3 {
    margin-top: 0;
    font-size: 26px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a5f7a;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    display: inline-block;
    padding: 12px 28px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.btn-select:hover {
    background-color: #218838;
}

.btn-select.selected {
    background-color: #6c757d;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.consultation-form {
    margin-top: 30px;
}

.selected-service-display {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #d1ecf1;
    border-left: 4px solid #1a5f7a;
    border-radius: 4px;
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #495057;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
}

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

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px 40px;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-section h3 {
    margin-top: 0;
    font-size: 20px;
    color: #856404;
}

.disclaimer-section p {
    margin-bottom: 0;
    font-size: 15px;
    color: #856404;
    line-height: 1.6;
}

.service-detailed {
    margin-bottom: 70px;
    padding-bottom: 50px;
    border-bottom: 2px solid #e9ecef;
}

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

.service-image {
    margin-bottom: 30px;
    background-color: #e9ecef;
}

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin: 15px 0 25px;
    font-family: 'Arial', sans-serif;
}

.contact-info-block {
    margin-bottom: 50px;
}

.contact-detail {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

.contact-email {
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-left: 4px solid #1a5f7a;
    display: inline-block;
}

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

.thanks-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 30px;
}

.thanks-details {
    margin: 30px 0;
    padding: 25px;
    background-color: #d1ecf1;
    border-radius: 8px;
}

.legal-page {
    padding: 40px 0;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    font-family: 'Arial', sans-serif;
    margin-bottom: 30px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

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

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 25px 30px;
    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: 15px;
    color: #495057;
    font-family: 'Arial', sans-serif;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #28a745;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #218838;
}

.btn-cookie.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #5a6268;
}

.cookie-link {
    color: #1a5f7a;
    text-decoration: underline;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

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

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

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

    .editorial-layout {
        padding: 0 20px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .lead-paragraph {
        font-size: 19px;
    }

    p {
        font-size: 17px;
    }

    .cta-inline {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

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

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}