* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

.main-nav a:hover {
    color: #1a5490;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
    border: 1px solid #ffeaa7;
    font-family: 'Arial', sans-serif;
}

.editorial-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-article {
    background-color: #ffffff;
}

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

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8f1f8;
}

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

.hero-text-narrow {
    text-align: center;
    padding: 0 20px;
}

.hero-text-narrow h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a5490;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.story-section {
    margin-bottom: 60px;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-column p {
    margin-bottom: 25px;
    font-size: 18px;
}

.narrow-column h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: #1a5490;
}

.inline-image-wrap {
    margin: 40px 0;
    background-color: #f0f4f8;
}

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

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

.text-cta {
    font-size: 18px;
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-cta:hover {
    color: #0d3a6b;
}

.services-showcase {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin: 60px -20px;
}

.services-editorial {
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e8f1f8;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a5490;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.select-service-btn {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.select-service-btn:hover {
    background-color: #0d3a6b;
}

.select-service-btn:active {
    background-color: #072747;
}

.form-section {
    background-color: #ffffff;
    padding: 60px 0;
}

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

.selected-service-notice {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    display: none;
    font-size: 16px;
    color: #155724;
}

.selected-service-notice.active {
    display: block;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

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

.submit-btn:active {
    background-color: #1e8449;
}

.trust-section {
    margin: 60px 0;
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-left: -20px;
    margin-right: -20px;
}

.testimonial-inline {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #ffffff;
    border-left: 4px solid #1a5490;
    border-radius: 5px;
}

.testimonial-inline p {
    font-size: 17px;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #888;
    font-style: normal;
}

.final-section {
    text-align: center;
    padding: 60px 0;
}

.inline-cta-button {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 25px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.inline-cta-button:hover {
    background-color: #0d3a6b;
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 40px 0;
    margin: 60px -20px 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
    text-align: center;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
    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;
    margin: 0;
    font-size: 14px;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .hero-text-narrow h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .narrow-column h2 {
        font-size: 26px;
    }

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

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