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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    display: flex;
    min-height: 100vh;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #3498db;
}

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

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

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-footer {
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.main-content {
    margin-left: 260px;
    flex: 1;
    padding-top: 40px;
}

.hero-split {
    display: flex;
    min-height: calc(100vh - 40px);
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background: #34495e;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.split-reverse,
.split-normal {
    display: flex;
    min-height: 600px;
}

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

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

.split-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

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

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-inline:hover {
    background: #5568d3;
}

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

.section-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro p {
    font-size: 18px;
    color: #6c757d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 20px;
    color: #6c757d;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 0 20px 20px;
}

.select-service {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #5568d3;
}

.form-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #6c757d;
}

.selected-service-display {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 4px solid #667eea;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

.btn-submit:hover {
    background: #5568d3;
}

.disclaimer-section {
    padding: 50px 60px;
    background: #f8f9fa;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
    font-style: italic;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    color: #3498db;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #95a5a6;
}

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

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

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    padding-top: 20px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

.btn-reject {
    background: transparent;
    color: #ecf0f1;
    border: 1px solid #ecf0f1;
}

.btn-reject:hover {
    background: rgba(236, 240, 241, 0.1);
}

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

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

    .service-card {
        flex: 0 1 calc(50% - 15px);
    }
}

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

    .sidebar-nav {
        position: relative;
        width: 100%;
        padding: 60px 20px 20px;
    }

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

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

    .hero-text,
    .split-content {
        padding: 50px 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .services-grid {
        padding: 60px 30px;
    }

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

    .form-section {
        padding: 60px 30px;
    }

    .form-container {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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