* {
    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: #2c3e50;
    background: #ffffff;
}

.main-header {
    background: #1a1a2e;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: lowercase;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4ecdc4;
}

.ad-disclosure {
    color: #95a5a6;
    font-size: 0.85rem;
    font-style: italic;
    padding-left: 2rem;
    border-left: 1px solid #34495e;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.value-prop-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-image {
    flex: 1;
    background: #ecf0f1;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.intro-services {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.section-header-center {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #7f8c8d;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-large {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-5px);
}

.service-card-large.reverse {
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 1;
    background: #dfe6e9;
}

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

.service-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-card-content p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #764ba2;
    transform: scale(1.05);
}

.cta-full-width {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content-center p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.contact-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-form-area {
    flex: 1.2;
}

.contact-form-area h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.service-display {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #7f8c8d;
    font-style: italic;
}

.service-display.selected {
    background: #e8f5e9;
    color: #27ae60;
    font-style: normal;
    font-weight: 600;
}

.btn-submit {
    padding: 1rem 3rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.contact-info-area {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-area h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info-area p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.main-footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    color: #95a5a6;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4ecdc4;
}

.footer-column p {
    color: #95a5a6;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    color: #7f8c8d;
    max-width: 900px;
    margin: 1rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #229954;
}

.btn-cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-prop-split,
    .service-card-large,
    .contact-split {
        flex-direction: column;
    }

    .value-prop-split.reverse,
    .service-card-large.reverse {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.25rem;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .service-card-content {
        padding: 2rem;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1a1a2e;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .main-nav.active {
        left: 0;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        padding-top: 1rem;
        border-top: 1px solid #34495e;
    }

    .nav-toggle {
        display: block;
    }

    .hero-left h1 {
        font-size: 1.75rem;
    }

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

    .footer-column {
        flex: 1 1 100%;
    }
}