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

:root {
    --primary: #1a4d6f;
    --secondary: #2c7da0;
    --accent: #d97706;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --border: #e5e7eb;
}

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

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--secondary);
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic;
    padding: 4px 10px;
    background: var(--bg-alt);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero {
    padding: 80px 0 60px;
    background: var(--bg-alt);
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--primary);
}

.hero-intro {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.article-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary);
}

.article-section h3 {
    font-size: 28px;
    margin: 40px 0 16px;
    font-weight: 600;
    color: var(--text);
}

.article-section p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text);
}

.inline-image {
    margin: 40px 0;
    background-color: var(--bg-alt);
    overflow: hidden;
    border-radius: 4px;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inline-cta {
    background: var(--primary);
    color: white;
    padding: 40px;
    margin: 48px 0;
    border-radius: 4px;
    text-align: center;
}

.inline-cta h3 {
    color: white;
    margin: 0 0 16px 0;
    font-size: 26px;
}

.inline-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 17px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn:hover {
    background: #b45309;
}

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

.btn-secondary:hover {
    background: #1f5f7f;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 4px;
}

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

.service-card p {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--text);
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin: 16px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

form {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: 4px;
    margin: 40px 0;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

footer {
    background: var(--primary);
    color: white;
    padding: 48px 0 24px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 32px;
}

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

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

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer-section a {
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    background: #fef3c7;
    border-left: 4px solid var(--accent);
    padding: 24px;
    margin: 40px 0;
    font-size: 15px;
    color: var(--text);
}

.disclaimer p {
    margin-bottom: 8px;
    font-size: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 111, 0.98);
    color: white;
    padding: 24px;
    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: 24px;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s;
}

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

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

.cookie-reject {
    background: white;
    color: var(--text);
}

.contact-info {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: 4px;
    margin: 32px 0;
}

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

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

.legal-content {
    line-height: 1.8;
}

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

.legal-content h3 {
    font-size: 24px;
    margin: 32px 0 16px 0;
    color: var(--text);
}

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

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

.thanks-message {
    text-align: center;
    padding: 80px 0;
}

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .article-section h2 {
        font-size: 28px;
    }

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

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