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

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

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    font-style: italic;
    font-family: 'Arial', sans-serif;
    padding: 4px 0;
}

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

nav a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s;
}

nav a:hover {
    color: #8b4513;
}

.hero-section {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: -1px;
}

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

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 2px;
    margin: 40px 0;
    background-color: #d4c5b0;
}

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px;
}

.editorial-content h2 {
    font-size: 36px;
    margin: 56px 0 24px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
}

.editorial-content h3 {
    font-size: 26px;
    margin: 40px 0 18px;
    font-weight: 400;
    color: #333;
}

.editorial-content p {
    margin-bottom: 24px;
    font-size: 18px;
    text-align: justify;
}

.inline-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    margin: 48px 0;
    border-radius: 2px;
    background-color: #d4c5b0;
}

.cta-inline {
    background: #8b4513;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    margin: 32px 0;
    font-size: 17px;
    border-radius: 2px;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #723a0f;
}

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

.service-card {
    background: #fff;
    padding: 32px;
    border-left: 4px solid #8b4513;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.service-card .price {
    font-size: 28px;
    color: #8b4513;
    font-weight: 600;
    margin-top: 16px;
}

.form-section {
    background: #f5f5f3;
    padding: 64px 0;
    margin: 64px 0;
}

.form-container {
    max-width: 580px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

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

.submit-btn {
    background: #8b4513;
    color: #fff;
    padding: 16px 48px;
    border: none;
    border-radius: 2px;
    font-size: 17px;
    cursor: pointer;
    width: 100%;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #723a0f;
}

footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 56px 0 32px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.disclaimer {
    max-width: 680px;
    margin: 48px auto;
    padding: 24px;
    background: #fff9e6;
    border-left: 3px solid #f4c430;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.references {
    max-width: 680px;
    margin: 48px auto;
    padding: 32px 24px;
    background: #f8f8f8;
    border-top: 2px solid #ddd;
}

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

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

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

.references a {
    color: #8b4513;
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 24px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

.cookie-text a {
    color: #f4c430;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.2s;
}

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

.cookie-accept {
    background: #8b4513;
    color: #fff;
}

.cookie-reject {
    background: #555;
    color: #fff;
}

.contact-info {
    max-width: 680px;
    margin: 48px auto;
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

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

.contact-info strong {
    color: #1a1a1a;
}

.legal-content {
    max-width: 780px;
    margin: 48px auto;
    padding: 0 24px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 16px;
    color: #333;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

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

.thanks-page {
    max-width: 680px;
    margin: 80px auto;
    padding: 64px 24px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.citation {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

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

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

    .editorial-content h2 {
        font-size: 28px;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
    }

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

    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }
}
