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

:root {
    --primary: #2B6CB0;
    --secondary: #4A90E2;
    --accent: #F7931E;
    --dark: #1A365D;
    --light: #F7FAFC;
    --grey: #718096;
    --white: #FFFFFF;
}

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

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

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

.header-top {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
}

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--light) 0%, #E6F2FF 100%);
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 108, 176, 0.15);
}

h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--grey);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 108, 176, 0.3);
}

.split-section {
    display: flex;
    min-height: 600px;
}

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

.split-left {
    padding: 80px 70px;
}

.split-right {
    background-size: cover;
    background-position: center;
    position: relative;
}

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

h2 {
    font-size: 42px;
    margin-bottom: 26px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 600;
}

.section-text {
    font-size: 17px;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--light);
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--dark);
    font-weight: 600;
}

.service-description {
    color: var(--grey);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

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

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

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

.select-service-btn.selected {
    background: var(--accent);
}

.contact-split {
    display: flex;
    min-height: 700px;
}

.contact-info {
    flex: 1;
    background: var(--dark);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-wrapper {
    flex: 1;
    padding: 80px 60px;
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.info-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-value {
    font-size: 18px;
    line-height: 1.6;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    font-size: 15px;
    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: 140px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-col a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 30px;
    display: none;
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: var(--grey);
}

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

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

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

.cookie-accept:hover {
    background: var(--dark);
}

.cookie-reject {
    background: transparent;
    color: var(--grey);
    border: 2px solid var(--grey);
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 48px;
    margin-bottom: 16px;
}

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

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

.page-content h3 {
    font-size: 24px;
    margin: 35px 0 16px;
}

.page-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--grey);
}

.page-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.9;
    color: var(--grey);
}

.thanks-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, #E6F2FF 100%);
}

.thanks-card {
    background: var(--white);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    text-align: center;
    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: var(--white);
}

.selected-service-display {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 16px;
    color: var(--grey);
}

#selected-service-info {
    display: none;
}

.disclaimer {
    background: #FFF9E6;
    border-left: 4px solid var(--accent);
    padding: 25px;
    margin: 50px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5A4A1F;
}

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

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

    .reverse {
        flex-direction: column;
    }

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

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

    nav ul {
        gap: 20px;
        flex-wrap: wrap;
    }

    h1 {
        font-size: 38px;
    }

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