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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --light-color: #f1f1f1;
    --text-color: #333;
    --gray-color: #666;
}

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

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

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

header {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.ad-label {
    background-color: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    font-family: 'Arial', sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.hero-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.hero-section .lead {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 40px;
    font-style: italic;
}

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

.article-section h2 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.article-section h3 {
    font-size: 28px;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 400;
}

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

.inline-image {
    width: 100%;
    max-width: 680px;
    height: 400px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 2px;
}

.inline-image-container {
    background-color: #e0e0e0;
    margin: 40px 0;
}

.cta-inline {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    margin: 30px 0;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
}

.cta-inline:hover {
    background-color: #d13550;
}

.emphasis-box {
    background-color: var(--light-color);
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
}

.emphasis-box p {
    margin-bottom: 0;
    font-size: 20px;
    font-style: italic;
}

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

.service-card {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.service-card .cta-inline {
    margin-top: 20px;
}

.form-section {
    background-color: var(--light-color);
    padding: 60px 20px;
    margin: 60px 0;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
}

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

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

.submit-btn {
    width: 100%;
    background-color: var(--accent-color);
    color: #fff;
    padding: 16px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.submit-btn:hover {
    background-color: #d13550;
}

.testimonial-section {
    padding: 60px 20px;
    background-color: #fff;
}

.testimonial {
    max-width: 680px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: var(--light-color);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--gray-color);
    font-style: normal;
    font-family: 'Arial', sans-serif;
}

footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

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

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: #fff;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.about-hero {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: #fff;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-hero .lead {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 60px 20px;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-hero {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.services-hero .lead {
    font-size: 20px;
    color: var(--gray-color);
}

.services-content {
    padding: 60px 20px;
}

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 400;
}

.contact-info {
    background-color: var(--light-color);
    padding: 40px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
}

.legal-page {
    padding: 80px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.legal-container ul {
    margin: 20px 0 20px 30px;
}

.legal-container li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-container p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--gray-color);
}

.disclaimer {
    background-color: var(--light-color);
    padding: 30px;
    margin: 60px 0;
    border: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-color);
}

.disclaimer strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 16px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s;
        align-items: flex-start;
    }

    nav.active {
        left: 0;
    }

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

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

    .article-section h3 {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

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