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

:root {
    --primary: #1a2332;
    --secondary: #00d4ff;
    --accent: #ff6b35;
    --light: #f8f9fa;
    --dark: #0d1117;
    --text: #2c3e50;
    --border: #e1e8ed;
}

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

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

header {
    background: var(--primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 5rem 5rem;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
}

.hero-right {
    flex: 1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23e8eef2" width="800" height="600"/><path fill="%2300d4ff" opacity="0.1" d="M0 300 Q200 200 400 300 T800 300 V600 H0 Z"/><rect fill="%231a2332" opacity="0.05" x="100" y="100" width="200" height="300"/><rect fill="%23ff6b35" opacity="0.08" x="500" y="150" width="150" height="250"/></svg>') center/cover;
    position: relative;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,35,50,0.3) 0%, transparent 100%);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

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

.cta-primary:hover {
    background: #e5602e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

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

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

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

.split-right {
    flex: 1;
    background: var(--light);
    padding: 5rem 5rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

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

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

.service-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.price-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.full-width-section {
    padding: 6rem 5rem;
    background: var(--light);
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.form-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 6rem 5rem;
    color: white;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s;
}

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

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

.form-group select {
    cursor: pointer;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #e5602e;
    transform: translateY(-2px);
}

.features-split {
    display: flex;
    gap: 0;
}

.feature-item {
    flex: 1;
    padding: 4rem 3rem;
    text-align: center;
    background: white;
    border-right: 1px solid var(--border);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:nth-child(odd) {
    background: var(--light);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.feature-desc {
    color: #666;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1.5rem 2rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.sticky-cta .cta-primary {
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
    padding: 1.2rem 2rem;
}

.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 5rem 5rem 4rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-section {
    padding: 5rem;
}

.two-column {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.column {
    flex: 1;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 5rem 5rem 4rem;
    text-align: center;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.info-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
}

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

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

.thanks-icon {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2rem;
}

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

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

.legal-page h2 {
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-page p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 2rem;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-split,
    .split-section,
    .features-split {
        flex-direction: column;
    }

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

    .hero-right {
        min-height: 400px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .full-width-section,
    .form-section,
    .content-section {
        padding: 3rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-banner.active {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }

    .two-column {
        flex-direction: column;
        gap: 2rem;
    }

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