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

:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #e74c3c;
    --text: #333333;
    --text-light: #7f8c8d;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --border: #ecf0f1;
}

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

.ad-notice {
    background: var(--bg-alt);
    padding: 0.4rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

header {
    background: var(--bg);
    border-bottom: 2px solid var(--primary);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.hero-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    margin: 2rem 0;
    background-color: var(--bg-alt);
}

.article-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.inline-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    margin: 2.5rem 0;
    background-color: var(--bg-alt);
}

.cta-inline {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    display: inline-block;
    margin: 2rem 0;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-inline:hover {
    background: #c0392b;
}

.story-card {
    background: var(--bg-alt);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent);
}

.story-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.story-card p {
    margin-bottom: 0.8rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

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

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-item p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: bold;
    margin: 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-select {
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s ease;
    width: 100%;
}

.service-select:hover {
    background: var(--secondary);
}

.service-select.selected {
    background: var(--accent);
}

.form-section {
    background: var(--bg-alt);
    padding: 3rem 2rem;
    margin: 3rem 0;
    max-width: 100%;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
}

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

.submit-btn {
    background: var(--accent);
    color: white;
    padding: 1rem 3rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #c0392b;
}

.submit-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

.contact-info {
    background: var(--bg-alt);
    padding: 2rem;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

footer {
    background: var(--primary);
    color: white;
    padding: 3rem 1.5rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.disclaimer {
    background: #e8f4f8;
    border-left: 4px solid #3498db;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: #555;
}

.references {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-alt);
}

.references h3 {
    margin-bottom: 1rem;
}

.references ol {
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.8rem;
}

.references a {
    color: #3498db;
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

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

.cookie-accept:hover {
    background: #c0392b;
}

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

.cookie-reject:hover {
    background: var(--bg-alt);
}

.thanks-message {
    background: var(--bg-alt);
    padding: 4rem 2rem;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid var(--accent);
}

.thanks-message h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--secondary);
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

    .hero-intro {
        font-size: 1.05rem;
    }

    nav ul {
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

sup {
    color: #3498db;
    cursor: pointer;
    text-decoration: none;
}

sup a {
    color: #3498db;
    text-decoration: none;
}

sup a:hover {
    text-decoration: underline;
}
