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

:root {
    --primary: #2d5a7b;
    --secondary: #c27ba0;
    --accent: #e8a87c;
    --dark: #1a2332;
    --light: #f7f4f1;
    --text: #333;
    --border: #ddd;
}

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

a {
    color: var(--primary);
    text-decoration: none;
}

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

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

header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

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

.split-hero {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.split-left {
    flex: 1;
    background: var(--primary);
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    flex: 1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23f7f4f1" width="800" height="600"/><circle cx="200" cy="150" r="80" fill="%23c27ba0" opacity="0.3"/><circle cx="600" cy="400" r="120" fill="%232d5a7b" opacity="0.2"/><path d="M0,300 Q400,200 800,300 L800,600 L0,600 Z" fill="%23e8a87c" opacity="0.15"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.split-left p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

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

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

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

.split-image {
    flex: 1;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.split-image svg {
    width: 100%;
    height: 100%;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border: 2px solid var(--border);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.price-suffix {
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
}

.form-section {
    background: var(--light);
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

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

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

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

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

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

.cta-bar {
    background: var(--secondary);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.cta-bar h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 40px;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-col a:hover {
    color: #fff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 25px 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

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

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

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

.sticky-cta.visible {
    display: block;
}

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

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.3rem;
}

.stats-bar {
    background: var(--primary);
    color: #fff;
    padding: 60px 20px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-page-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 120px 20px 80px;
    text-align: center;
}

.about-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.content-section {
    padding: 80px 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 50px;
}

.content-wrapper p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-page {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
    background: var(--primary);
    color: #fff;
    padding: 80px 60px;
}

.contact-form-wrap {
    flex: 1;
    padding: 80px 60px;
    background: var(--light);
}

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

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-item p {
    font-size: 1.15rem;
    font-weight: 500;
}

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

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

.thanks-content h1 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 25px;
}

.thanks-content .icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.policy-page {
    padding: 80px 20px;
}

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

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary);
}

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

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

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

    .split-left,
    .split-content,
    .contact-info,
    .contact-form-wrap {
        padding: 60px 30px;
    }

    .split-left h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    nav.active {
        max-height: 400px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    nav li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

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

    .stats-container {
        flex-direction: column;
    }

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