:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --accent: #0891b2;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

h1, h2, h3, h4 {
    line-height: 1.3;
    color: var(--text);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: var(--bg-alt);
    color: var(--text-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.header {
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text);
    transition: transform var(--transition);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--bg-alt);
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    background-color: var(--border);
    color: var(--text);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.split-section {
    display: flex;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

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

.hero {
    background-color: var(--bg);
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.hero-image-container,
.about-image-container,
.team-image-container,
.testimonial-image-container {
    background-color: var(--bg-alt);
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container img,
.about-image-container img,
.team-image-container img,
.testimonial-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    max-width: 500px;
}

.split-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.split-content .btn {
    margin-top: 16px;
}

.features-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
}

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 48px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background-color: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    margin-bottom: 8px;
}

.service-info p {
    color: var(--text-light);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.testimonial-section {
    background-color: var(--bg-alt);
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-content blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
}

.testimonial-content cite {
    color: var(--text-light);
    font-style: normal;
}

.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 64px;
    border-radius: var(--radius);
    text-align: center;
    color: white;
}

.cta-box h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-box p {
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background-color: white;
    color: var(--primary);
    border-color: white;
}

.cta-box .btn-primary:hover {
    background-color: var(--bg-alt);
    border-color: var(--bg-alt);
}

.page-hero {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 16px;
}

.page-hero p {
    opacity: 0.8;
    font-size: 1.125rem;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-alt);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: var(--bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.value-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

.value-card p {
    color: var(--text-light);
}

.stats-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: white;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.services-full {
    padding: 80px 0;
}

.service-card-full {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    padding: 32px;
    background-color: var(--bg-alt);
    border-radius: var(--radius);
    align-items: center;
}

.service-card-full.reverse {
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 0 0 40%;
    background-color: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card-content {
    flex: 1;
}

.service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-price-box {
    margin-bottom: 24px;
}

.service-price-box .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

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

.additional-info {
    padding: 0 0 80px;
}

.info-box {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3a5f 100%);
    padding: 48px;
    border-radius: var(--radius);
    text-align: center;
    color: white;
}

.info-box h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.info-box p {
    margin-bottom: 24px;
    opacity: 0.9;
}

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

.contact-grid {
    display: flex;
    gap: 64px;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-info h2 {
    margin-bottom: 32px;
}

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

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-light);
}

.contact-note {
    background-color: var(--bg-alt);
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 32px;
}

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

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

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

.form-checkbox {
    flex-direction: row;
    align-items: center;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    font-weight: normal;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    color: var(--success);
    margin-bottom: 32px;
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-service {
    background-color: var(--bg-alt);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.legal-content {
    padding: 80px 0;
}

.legal-article {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-article h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-article p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-article ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-article li {
    color: var(--text-light);
    padding: 4px 0;
    list-style: disc;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-style: italic;
}

.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: white;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.875rem;
    opacity: 0.9;
}

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

.cookie-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.cookie-link:hover {
    color: white;
}

.disclaimer {
    background-color: var(--bg-alt);
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.disclaimer p {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .split-section {
        flex-direction: column;
    }

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

    .split-left,
    .split-right {
        padding: 48px 24px;
    }

    .hero-image-container,
    .about-image-container,
    .team-image-container,
    .testimonial-image-container {
        min-height: 300px;
    }

    .service-card-full {
        flex-direction: column;
    }

    .service-card-full.reverse {
        flex-direction: column;
    }

    .service-card-image {
        flex: none;
        width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-info {
        flex: none;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .stats-grid {
        gap: 48px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
