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

:root {
    --primary: #2d3561;
    --secondary: #c94e50;
    --accent: #f39c6b;
    --dark: #1a1d2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

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

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

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

.header {
    background: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-desktop a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--secondary);
}

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-mobile a {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 500;
}

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

.split-left,
.split-right {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left {
    background: var(--light);
}

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

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

.split-section.reverse .split-right {
    background: var(--light);
}

.split-section.dark .split-left {
    background: var(--primary);
    color: var(--white);
}

.split-section.dark .split-right {
    background: var(--dark);
    color: var(--white);
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-right {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800');
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.btn:hover {
    background: #b33e40;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 78, 80, 0.3);
}

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

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

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

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.service-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.service-description {
    color: var(--gray);
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 700;
}

.service-select {
    margin-top: 1rem;
}

.service-select .btn {
    width: 100%;
}

.image-box {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
}

.form-section {
    background: var(--light);
    padding: 4rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.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;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 900;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-cta .btn {
    background: var(--white);
    color: var(--secondary);
}

.sticky-cta .btn:hover {
    background: var(--light);
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-text {
    color: var(--dark);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 0.7rem 1.5rem;
}

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

.btn-reject {
    background: var(--gray);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.contact-value {
    color: var(--dark);
    font-size: 1.1rem;
}

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

.legal-content h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.thanks-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-section {
    padding: 3rem 2rem;
}

.about-section:nth-child(even) {
    background: var(--light);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .nav-mobile {
        display: none;
    }

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

    .hero-section {
        flex-direction: row;
    }

    .hero-left,
    .hero-right {
        min-height: 600px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-container {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (min-width: 1024px) {
    .split-left,
    .split-right {
        padding: 4rem 5rem;
    }

    .hero-left {
        padding: 5rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}
