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

:root {
    --primary: #d4567f;
    --secondary: #8b4367;
    --accent: #ffd6e7;
    --dark: #2a1f26;
    --light: #faf8f9;
    --text: #3d3339;
    --border: #e8dfe4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--light);
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

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

nav {
    display: flex;
    gap: 35px;
}

nav a {
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

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

.split-left, .split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    background: white;
}

.split-right {
    background: var(--accent);
}

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

.split-section.reverse .split-left {
    background: var(--accent);
}

.split-section.reverse .split-right {
    background: white;
}

.hero-split {
    min-height: 85vh;
}

.hero-split .split-left {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
}

.hero-split .split-right {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23ffd6e7" width="800" height="600"/><path fill="%23d4567f" opacity="0.15" d="M0 300 Q200 200 400 300 T800 300 V600 H0 Z"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--secondary);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 86, 127, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

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

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

.price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 20px 0;
}

.price-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

.form-section {
    padding: 80px 60px;
    background: linear-gradient(to bottom, white 0%, var(--light) 100%);
}

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

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

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary);
}

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 18px 35px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 30px rgba(212, 86, 127, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(212, 86, 127, 0.5);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
    margin-right: 30px;
}

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

.cookie-buttons button {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

footer {
    background: var(--dark);
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.about-intro {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 1;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    background: var(--secondary);
    color: white;
    padding: 80px 60px;
}

.contact-map {
    flex: 1;
    background: var(--accent);
    padding: 80px 60px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 18px;
}

.policy-content p {
    margin-bottom: 18px;
}

.policy-content ul {
    margin: 20px 0 20px 30px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

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

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-wrapper {
        padding: 15px 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .about-intro {
        flex-direction: column;
        padding: 50px 30px;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}
