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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
}

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

.site-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.site-logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    font-family: 'Arial', sans-serif;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 3px;
    margin-left: auto;
    margin-right: 1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    color: white;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

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

.article-lead {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-style: italic;
}

.article-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    text-align: justify;
}

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

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

.inline-image {
    margin: 3rem 0;
    width: 100%;
}

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

.inline-image figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.75rem;
    font-style: italic;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.service-card {
    background: var(--light-bg);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--secondary-color);
}

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

.service-card p {
    margin-bottom: 1.2rem;
}

.service-price {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    margin: 1.5rem 0;
}

.cta-inline {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background 0.3s;
    margin-top: 1rem;
}

.cta-inline:hover {
    background: #2980b9;
}

.cta-block {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    text-align: center;
}

.cta-block h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2980b9;
}

.form-section {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-button {
    width: 100%;
    padding: 1.1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #2980b9;
}

.footer-main {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem 2rem;
}

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

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    opacity: 0.8;
}

.disclaimer {
    background: #fef9e7;
    border-left: 4px solid #f39c12;
    padding: 2rem;
    margin: 3rem 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-family: 'Arial', sans-serif;
}

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

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

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

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    display: none;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.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-text {
    flex: 1;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-button {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

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

.cookie-button.reject {
    background: #95a5a6;
    color: white;
}

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

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

.about-section {
    margin: 3rem 0;
}

.about-image {
    width: 100%;
    margin: 2rem 0;
    background: var(--light-bg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thanks-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.reference-list {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.reference-list h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.reference-list ol {
    list-style-position: inside;
    font-size: 0.9rem;
    line-height: 2;
}

.reference-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.citation {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    .main-nav.active {
        display: flex;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-notice {
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .article-container {
        padding: 2rem 1.5rem;
    }

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

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