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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #10b981;
}

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.services-preview {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    flex: 0 0 350px;
    background-color: var(--bg-light);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-select {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.service-select:hover {
    background-color: var(--secondary-color);
}

.approach-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    color: var(--text-light);
}

.approach-image {
    flex: 1;
    background-color: var(--bg-light);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 40px;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 550px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 28px;
    font-size: 28px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

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

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

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.site-footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

.cookie-link {
    color: #60a5fa;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header {
    background-color: var(--bg-light);
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.page-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.page-content ul li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.thanks-container .selected-service {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 20px;
    margin: 24px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px 40px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .hero-split,
    .intro-split,
    .approach-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .service-icon {
        flex: none;
        height: 250px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}