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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #1a1a2e;
    color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #4a90e2;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 25px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a90e2;
}

.nav-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.nav-footer a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #808080;
    padding-top: 15px;
    border-top: 1px solid #333;
    line-height: 1.4;
}

.main-content {
    margin-left: 280px;
}

.hero-split {
    display: flex;
    min-height: 100vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.hero-intro {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.hero-right {
    flex: 1;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4a90e2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #357abd;
}

.split-reverse,
.split-default {
    display: flex;
    min-height: 70vh;
}

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

.split-image {
    flex: 1;
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

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

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

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.benefits-grid {
    padding: 100px 60px;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1a1a2e;
}

.benefits-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    max-width: 380px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.benefit-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a2e;
}

.benefit-card p {
    padding: 0 25px 25px;
    color: #666;
    font-size: 16px;
}

.testimonials-section {
    padding: 100px 60px;
    background: #1a1a2e;
    color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #fff;
}

.testimonial-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    max-width: 380px;
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #aaa;
}

.form-split {
    display: flex;
    min-height: 80vh;
}

.form-info {
    flex: 1;
    padding: 80px 60px;
    background: #4a90e2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.form-info p {
    font-size: 18px;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
    display: flex;
    align-items: center;
}

.main-form {
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0f0f1a;
}

.info-section {
    padding: 80px 60px;
    background: #f4f4f4;
}

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

.info-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.disclaimer {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.disclaimer p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 60px 30px 340px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a90e2;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 25px 40px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    background: #4a90e2;
    color: #fff;
}

.btn-cookie:hover {
    background: #357abd;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #fff;
}

.btn-cookie.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.services-grid {
    padding: 100px 60px;
    background: #fff;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
    max-width: 600px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid #4a90e2;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin-top: 20px;
}

.about-hero {
    padding: 120px 60px 80px;
    background: #fff;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 30px;
    color: #1a1a2e;
    max-width: 800px;
}

.about-content {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    background: #f9f9f9;
}

.about-text {
    flex: 1.5;
}

.about-text p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
}

.about-sidebar {
    flex: 1;
    background: #1a1a2e;
    padding: 40px;
    border-radius: 8px;
    color: #fff;
    align-self: flex-start;
}

.about-sidebar h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4a90e2;
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
}

.contact-page {
    padding: 120px 60px;
    background: #fff;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.contact-info {
    max-width: 700px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4a90e2;
}

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.legal-page {
    padding: 120px 60px;
    background: #fff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 12px;
    color: #555;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #f9f9f9;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 220px;
        padding: 30px 20px;
    }

    .main-content {
        margin-left: 220px;
    }

    .footer {
        padding-left: 280px;
    }
}

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-split,
    .split-reverse,
    .split-default,
    .form-split {
        flex-direction: column;
    }

    .benefits-container,
    .testimonial-container,
    .services-container {
        flex-direction: column;
    }

    .footer {
        padding-left: 60px;
    }

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