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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --light-gray: #ecf0f1;
    --white: #ffffff;
    --border-color: #ddd;
    --success-color: #27ae60;
    --warning-color: #e67e22;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
}

.nav-minimal {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 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-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background-color: #f9f9f9;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.main-article {
    max-width: 100%;
}

.article-hero {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: var(--light-gray);
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2rem;
}

.hero-overlay h1 {
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 auto;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-intro {
    margin: 3rem 0;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.article-content {
    margin: 3rem 0;
}

.article-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.article-image {
    width: 100%;
    margin: 4rem 0;
    background-color: var(--light-gray);
}

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

.inline-cta {
    margin: 4rem 0;
    padding: 0 2rem;
}

.cta-card {
    max-width: 720px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.services-inline {
    margin: 4rem 0;
    background-color: #fafafa;
    padding: 4rem 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--light-gray);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.form-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
    margin: 4rem 0 0 0;
}

.selected-service-display {
    background-color: var(--white);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--success-color);
    display: none;
}

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

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    max-width: 720px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--success-color);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #fff9f0;
    padding: 2rem;
    margin: 4rem 0;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Arial', sans-serif;
    font-style: italic;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem 2rem;
    margin-top: 4rem;
}

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

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

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

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: var(--white);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    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 {
    flex: 1;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: 4rem 0 2rem 0;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin: 4rem 0;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: var(--light-gray);
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.service-text p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-text li {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}

.contact-info-section {
    padding: 3rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-gray);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.contact-card p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-email {
    font-weight: bold;
    color: var(--text-color);
}

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

.thanks-section {
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-confirmation {
    margin: 2rem auto;
    max-width: 600px;
}

.selected-service-box {
    background-color: #f0f8ff;
    padding: 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
}

.selected-service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.service-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0.5rem 0;
    font-family: 'Arial', sans-serif;
}

.thanks-info {
    max-width: 720px;
    margin: 3rem auto;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-info p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.thanks-info ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.thanks-info li {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.email-text {
    font-weight: bold;
    color: var(--text-color);
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-page p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.legal-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.cookies-table thead {
    background-color: var(--light-gray);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: bold;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .content-narrow {
        padding: 0 1.5rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .service-detail {
        flex-direction: column;
        gap: 2rem;
    }

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

    .contact-grid {
        flex-direction: column;
    }

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