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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.7rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.main-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.article-header {
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-text {
    font-size: 1.25rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.text-section {
    margin-bottom: 3rem;
}

.text-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.text-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.8rem;
    color: #2a2a2a;
    font-weight: 600;
}

.text-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.text-section ul,
.text-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.text-section li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

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

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.content-image-small {
    margin: 2rem 0;
}

.content-image-small img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.inline-cta {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f7f4;
    border-left: 4px solid #d4a574;
    border-radius: 4px;
}

.inline-cta p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2a2a2a;
    margin: 0;
}

.service-preview {
    margin: 4rem 0;
}

.service-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-preview p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

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

.service-card {
    padding: 1.8rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

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

.service-card p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1rem;
    display: block;
}

.select-service-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

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

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #7a7a7a;
}

.process-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.process-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    padding-left: 0.5rem;
}

.cta-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f4f1ed;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.submit-btn {
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
    font-weight: 500;
}

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

.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 3px solid #c0c0c0;
    border-radius: 4px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #6a6a6a;
    line-height: 1.6;
}

.site-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 3rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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-size: 0.95rem;
    color: #4a4a4a;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

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

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

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

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

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4a574;
}

.contact-info-section {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    padding: 1.5rem;
    background-color: #f9f7f4;
    border-radius: 6px;
}

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

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.small-note {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin-top: 0.5rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #2a2a2a;
}

.faq-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

.legal-page .text-section h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.legal-page .text-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.legal-page .text-section p {
    font-size: 1rem;
}

.thanks-page .article-header {
    text-align: center;
}

.thanks-links {
    list-style: none;
    margin: 2rem 0;
}

.thanks-links li {
    margin-bottom: 1rem;
}

.thanks-links a {
    color: #d4a574;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.thanks-links a:hover {
    color: #c29563;
    text-decoration: underline;
}

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

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

    .article-header h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .text-section h2 {
        font-size: 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-section {
        gap: 1.5rem;
    }
}