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

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    outline: none;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    color: white;
    padding: 40px 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
}

.nav-links a {
    font-size: 16px;
    transition: all 0.3s;
    padding-left: 0;
    border-left: 3px solid transparent;
}

.nav-links a:hover {
    color: var(--secondary);
    padding-left: 15px;
    border-left-color: var(--secondary);
}

.nav-cta {
    background: var(--secondary);
    color: white;
    padding: 15px 25px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #d63850;
    transform: translateY(-2px);
}

.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: var(--primary);
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 24px;
}

.content-wrapper {
    margin-left: 280px;
}

.split-section {
    display: flex;
    min-height: 100vh;
    align-items: center;
}

.split-left,
.split-right {
    flex: 1;
    padding: 80px 60px;
}

.split-left {
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 6px;
    margin-left: 20px;
    transition: all 0.3s;
}

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

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 25px;
}

.service-select {
    background: var(--primary);
    color: white;
    padding: 14px 30px;
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.form-section {
    padding: 100px 60px;
    background: var(--light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 18px;
    font-size: 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s;
}

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

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

.form-submit {
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #d63850;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: white;
    padding: 20px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 25px 30px;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

.cookie-text {
    flex: 1;
    margin-right: 30px;
    font-size: 15px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.about-content {
    max-width: 700px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 28px;
    color: var(--secondary);
    min-width: 40px;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background: var(--light);
}

.thanks-box {
    background: white;
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 80px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.thanks-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--accent);
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    nav {
        width: 100%;
        height: auto;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    nav.active {
        transform: translateX(0);
    }

    .mobile-nav-toggle {
        display: block;
    }

    .content-wrapper {
        margin-left: 0;
    }

    .split-section {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-left,
    .split-right {
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .about-stats {
        flex-direction: column;
        gap: 25px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 16px 28px;
        font-size: 14px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-text {
        margin-right: 0;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 34px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        min-width: 100%;
    }

    .form-container {
        padding: 35px 25px;
    }

    .legal-content {
        padding: 60px 20px;
    }

    .legal-content h1 {
        font-size: 32px;
    }
}
