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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f5f5f5;
    --text: #333;
    --border: #ddd;
}

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

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

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.article-hero {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

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

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 3rem;
    border-radius: 4px;
}

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

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

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

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

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.quote-block {
    background: var(--light);
    border-left: 4px solid var(--accent);
    padding: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.2rem;
}

.inline-cta {
    background: linear-gradient(135deg, var(--accent), #c23654);
    color: white;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta h3 {
    margin: 0 0 1rem;
    color: white;
    font-size: 1.8rem;
}

.inline-cta p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--accent);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

.service-card {
    background: white;
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

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

.service-card h3 {
    margin: 0 0 1rem;
    color: var(--primary);
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
    margin: 1rem 0;
}

.service-card ul {
    list-style: none;
    margin: 1rem 0;
}

.service-card li::before {
    content: "✓ ";
    color: var(--accent);
    font-weight: bold;
}

.testimonial {
    background: var(--light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
    color: var(--secondary);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .cta-button {
    background: var(--accent);
    color: white;
    padding: 0.8rem 2rem;
    margin-left: 1rem;
}

.form-section {
    background: var(--light);
    padding: 4rem 0;
    margin: 3rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    background: var(--accent);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    width: 100%;
}

.submit-button:hover {
    background: #c23654;
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content {
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-header {
    background: var(--primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.contact-info {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--secondary);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

.thanks-container {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem;
    text-align: center;
    background: var(--light);
    border-radius: 8px;
}

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

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

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

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    nav.active {
        display: flex;
    }

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

    .article-content {
        padding: 0 1rem;
    }

    .article-content p {
        font-size: 1rem;
    }

    .hero-image {
        height: 250px;
    }

    .sticky-cta {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .sticky-cta .cta-button {
        padding: 0.6rem 1.5rem;
        margin: 0.5rem 0 0;
        display: block;
    }

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

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

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