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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --success: #10b981;
}

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

img {
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.nav-main a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual {
    flex: 1;
    background-color: #e0e7ff;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

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

.section-split {
    display: flex;
    align-items: stretch;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-visual {
    flex: 1;
    background-color: #dbeafe;
    position: relative;
    overflow: hidden;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 2.75rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-item {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
}

.service-item:last-child {
    border-bottom: none;
}

.service-content {
    flex: 1.2;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-visual {
    flex: 1;
    background-color: #f1f5f9;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content h3 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.form-section {
    background: var(--bg-alt);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.form-container h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.form-container p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

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

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

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

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

.footer {
    background: var(--secondary);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 1.5rem 2rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    flex-wrap: wrap;
}

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

.cookie-banner p {
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

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

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

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.75rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 8px;
}

.info-item h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text);
    font-size: 1.05rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-container h1 {
    font-size: 2.75rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-container p {
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
    color: var(--text);
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
}

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

    .hero-content,
    .split-content {
        padding: 3rem 2rem;
    }

    .hero-visual,
    .split-visual {
        min-height: 400px;
    }

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

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }
}
