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

:root {
    --primary-color: #2c1810;
    --accent-color: #d4a574;
    --text-color: #333;
    --light-bg: #faf8f6;
    --white: #ffffff;
    --border-color: #e8e3de;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.ad-disclosure {
    background-color: #fffbf0;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    color: #666;
}

header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    transition: color 0.3s;
}

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

.article-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-title {
    font-size: 42px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.article-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 2px;
}

.story-section {
    margin: 50px 0;
}

.story-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
}

.story-section h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 35px 0 20px;
    font-weight: 400;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.inline-cta {
    background-color: var(--light-bg);
    padding: 35px;
    margin: 50px 0;
    border-left: 3px solid var(--accent-color);
}

.inline-cta h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.inline-cta p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1a0f0a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 35px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.service-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.service-price {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 10px;
}

.testimonial-section {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 50px -40px;
    position: relative;
}

.testimonial-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-style: italic;
}

.testimonial-section p {
    font-size: 17px;
    color: #555;
}

.testimonial-author {
    margin-top: 15px;
    font-size: 15px;
    color: #888;
}

.form-section {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    margin: 50px 0;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.reference-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.reference-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.reference-list {
    list-style: none;
}

.reference-list li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

.reference-list a {
    color: var(--accent-color);
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.citation {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    vertical-align: super;
}

.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #f0e5c1;
    padding: 25px;
    margin: 50px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

.page-header {
    background-color: var(--light-bg);
    padding: 60px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.page-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    font-size: 16px;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    background-color: var(--light-bg);
    padding: 35px;
    margin: 30px 0;
    border-left: 3px solid var(--accent-color);
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.contact-info strong {
    color: var(--primary-color);
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
}

.thanks-container h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-container .cta-button {
    margin-top: 30px;
}

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

    .hero-title {
        font-size: 32px;
    }

    .article-image {
        height: 300px;
    }

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

    .service-image {
        width: 100%;
        height: 250px;
    }

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

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

    .testimonial-section {
        margin: 50px 0;
    }
}
