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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

header {
    background: var(--bg-white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.split-section {
    display: flex;
    align-items: center;
    min-height: 500px;
    gap: var(--spacing-lg);
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: var(--spacing-md);
}

.split-visual {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.hero-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255,255,255,0.9);
}

.hero-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231,76,60,0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: var(--spacing-md);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.service-price {
    font-size: 1.75rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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: var(--spacing-md);
}

.cookie-text {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

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

.testimonials {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
}

.testimonial-item {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.stats-split {
    display: flex;
    gap: var(--spacing-lg);
    align-items: stretch;
}

.stats-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
}

.text-content h2 {
    margin-bottom: var(--spacing-sm);
}

.text-content h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.text-content p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.text-content ul {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.text-content ul li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.contact-item {
    margin-bottom: var(--spacing-sm);
}

.contact-label {
    font-weight: 600;
    color: var(--primary-color);
}

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 4px;
}

.disclaimer p {
    margin-bottom: 0.5rem;
    color: #856404;
}

@media (max-width: 768px) {
    .split-section,
    .split-section.reverse,
    .hero-split,
    .footer-content,
    .stats-split {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .nav-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
}
