:root {
    --primary: #6B4E9B;
    --primary-dark: #523976;
    --accent: #9B7EC4;
    --text: #2C2C2C;
    --text-light: #666;
    --bg-light: #F8F6FB;
    --bg-white: #FFFFFF;
    --border: #E5E0EE;
    --success: #4CAF50;
}

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

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

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

header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

nav {
    padding: 20px 0;
}

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

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

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

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

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

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

.split-left,
.split-right {
    flex: 1;
    padding: 60px;
}

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

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

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

.split-section h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--primary-dark);
}

.split-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.split-section p {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.image-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image-container {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
}

.full-width-section {
    padding: 80px 0;
}

.full-width-section.alt {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    padding-left: 35px;
    position: relative;
    font-size: 17px;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.contact-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.contact-info p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.contact-info strong {
    color: var(--text);
}

footer {
    background: var(--primary-dark);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

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

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

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

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

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

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

.footer-section a:hover {
    color: white;
}

.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: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: white;
    padding: 25px;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

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

.cookie-content {
    flex: 1;
    margin-right: 30px;
}

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

.cookie-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

.cookie-buttons button:hover {
    opacity: 0.9;
}

.thanks-container {
    text-align: center;
    padding: 100px 20px;
}

.thanks-container h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.disclaimer {
    background: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--primary);
    margin: 40px 0;
    font-size: 15px;
    color: var(--text-light);
}

.cta-inline {
    display: inline-block;
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: var(--primary-dark);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }

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

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

    .split-section h1 {
        font-size: 36px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

    .cookie-banner {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content {
        margin-right: 0;
    }

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