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

:root {
    --primary-color: #2c5f6f;
    --secondary-color: #d4a574;
    --accent-color: #8b4513;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f6f2;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

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

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

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

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

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

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

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

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

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

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

.hero-article {
    padding: 60px 0 40px;
}

.hero-article h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.hero-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 40px;
    background-color: var(--bg-light);
}

.article-content {
    padding: 40px 0;
}

.article-content p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 32px;
    margin: 50px 0 24px;
    font-weight: 400;
    color: var(--primary-color);
}

.article-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: 400;
}

.inline-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 40px 0;
    background-color: var(--bg-light);
}

.cta-inline {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.btn:hover {
    background-color: var(--accent-color);
}

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

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

.services-intro {
    padding: 60px 0 40px;
    text-align: center;
}

.services-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 0;
    transition: box-shadow 0.3s ease;
}

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

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.about-section {
    padding: 60px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    order: 2;
}

.about-image-wrapper {
    order: 1;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.quote-block {
    border-left: 4px solid var(--secondary-color);
    padding: 30px;
    margin: 40px 0;
    background-color: var(--bg-light);
    font-style: italic;
    font-size: 20px;
}

.form-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.form-container p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

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

.contact-info {
    padding: 60px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
}

.contact-item {
    padding: 20px;
    background-color: var(--bg-light);
}

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

.contact-item p {
    color: var(--text-light);
    font-size: 16px;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 400;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

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

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

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

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

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

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

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

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-page p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 2px solid var(--border-color);
    padding: 20px;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 10px;
    font-size: 14px;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.disclaimer {
    background-color: #fff9e6;
    border: 1px solid #e6d8a5;
    padding: 20px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-article h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-image,
    .inline-image {
        height: 250px;
    }

    .service-image {
        height: 200px;
    }
}
