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

:root {
    --primary: #d32f2f;
    --primary-dark: #9a0007;
    --secondary: #212121;
    --accent: #ffa000;
    --light: #fafafa;
    --gray: #757575;
    --border: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background: #fff;
}

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: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

nav a {
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    transition: 0.3s;
}

.split-hero {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
    margin-top: 70px;
}

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

.split-left {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

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

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 500px;
}

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

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

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

.section-content,
.section-visual {
    flex: 1;
}

.section-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-visual {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

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

.section-text {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 20px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-description {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.7;
}

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

.price-note {
    font-size: 14px;
    color: var(--gray);
    margin-top: -10px;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
}

.features-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.form-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 100px 20px;
}

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

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--secondary);
    color: white;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

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

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: block;
    font-size: 15px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: white;
    padding: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

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

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideIn 0.5s;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-inline {
    background: var(--accent);
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
}

.cta-inline h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 30px;
}

.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 140px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    line-height: 1.8;
}

.page-content h2 {
    font-size: 32px;
    margin: 50px 0 20px;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--gray);
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    color: var(--gray);
}

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

.contact-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: var(--light);
    padding: 35px;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--secondary);
}

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

.thanks-box {
    max-width: 600px;
}

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

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
}

@media (max-width: 968px) {
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    nav.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

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

    .section-content {
        padding: 50px 30px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

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

    .hero-content p {
        font-size: 17px;
    }

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

    .btn {
        padding: 14px 30px;
        font-size: 15px;
    }

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