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

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

.ad-label {
    background: #fff3cd;
    color: #856404;
    padding: 8px 16px;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid #ffc107;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

header {
    background: white;
    border-bottom: 1px solid #e8e8e6;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 780px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c2c2c;
}

.hero {
    max-width: 780px;
    margin: 80px auto 60px;
    padding: 0 32px;
}

.hero-image {
    width: 100%;
    height: 480px;
    background: #e8e8e6;
    margin-bottom: 40px;
    object-fit: cover;
}

h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.lead {
    font-size: 21px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.content-section {
    max-width: 680px;
    margin: 0 auto 80px;
    padding: 0 32px;
}

.content-section h2 {
    font-size: 32px;
    margin: 60px 0 24px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.content-section h3 {
    font-size: 24px;
    margin: 40px 0 16px;
    font-weight: 500;
}

.content-section p {
    margin-bottom: 24px;
    font-size: 18px;
}

.inline-image {
    width: 100%;
    height: 380px;
    margin: 48px 0;
    background: #e8e8e6;
    object-fit: cover;
}

.cta-inline {
    display: inline-block;
    background: #2c5f2d;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #234a24;
    cursor: pointer;
}

.service-card {
    background: white;
    padding: 32px;
    margin: 32px 0;
    border: 1px solid #e8e8e6;
}

.service-card h3 {
    font-size: 22px;
    margin: 0 0 12px 0;
    color: #2c2c2c;
}

.service-price {
    font-size: 28px;
    color: #2c5f2d;
    font-weight: 600;
    margin: 16px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-description {
    color: #5a5a5a;
    font-size: 16px;
    line-height: 1.6;
}

.services-grid {
    max-width: 780px;
    margin: 60px auto;
    padding: 0 32px;
}

.form-container {
    max-width: 580px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border: 1px solid #e8e8e6;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0ce;
    font-size: 16px;
    font-family: inherit;
    background: #fafaf8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
    background: white;
}

.form-submit {
    background: #2c5f2d;
    color: white;
    padding: 16px 48px;
    border: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    width: 100%;
}

.form-submit:hover {
    background: #234a24;
}

.contact-info {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 32px;
}

.contact-details {
    background: white;
    padding: 40px;
    border: 1px solid #e8e8e6;
    margin: 32px 0;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-details p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

footer {
    background: #2c2c2c;
    color: #b8b8b8;
    padding: 60px 32px 40px;
    margin-top: 120px;
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p,
.footer-section a {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 32px;
    border-top: 1px solid #424242;
    text-align: center;
    font-size: 13px;
}

.disclaimer {
    max-width: 780px;
    margin: 60px auto;
    padding: 32px;
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
}

.references {
    max-width: 680px;
    margin: 60px auto;
    padding: 32px;
    background: white;
    border: 1px solid #e8e8e6;
}

.references h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.references ol {
    margin-left: 24px;
}

.references li {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.references a {
    color: #2c5f2d;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.citation {
    color: #2c5f2d;
    text-decoration: none;
    font-size: 14px;
    vertical-align: super;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.citation:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 24px 32px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    border-top: 2px solid #2c5f2d;
}

.cookie-banner.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s;
}

.cookie-accept {
    background: #2c5f2d;
    color: white;
}

.cookie-accept:hover {
    background: #234a24;
}

.cookie-reject {
    background: #e8e8e6;
    color: #2c2c2c;
}

.cookie-reject:hover {
    background: #d0d0ce;
}

.legal-page {
    max-width: 880px;
    margin: 60px auto;
    padding: 0 32px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    font-weight: 500;
}

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 32px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 12px;
}

.testimonial {
    background: white;
    padding: 32px;
    margin: 40px 0;
    border-left: 4px solid #2c5f2d;
    font-style: italic;
}

.testimonial-author {
    font-style: normal;
    margin-top: 16px;
    font-weight: 600;
    color: #5a5a5a;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.about-hero {
    max-width: 780px;
    margin: 60px auto;
    padding: 0 32px;
}

.about-image {
    width: 100%;
    height: 420px;
    background: #e8e8e6;
    margin: 48px 0;
    object-fit: cover;
}

.thanks-container {
    max-width: 580px;
    margin: 120px auto;
    padding: 60px 40px;
    background: white;
    border: 1px solid #e8e8e6;
    text-align: center;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c5f2d;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-container a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 500;
}

.thanks-container a:hover {
    text-decoration: underline;
}

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

    .nav-links {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    h1 {
        font-size: 32px;
    }

    .lead {
        font-size: 18px;
    }

    .hero-image {
        height: 320px;
    }

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

    .cookie-banner.active {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}
