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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    overflow: hidden;
}

.hero-left img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

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

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

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

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

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

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.intro-right {
    flex: 1;
    overflow: hidden;
}

.intro-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-split {
    display: flex;
    min-height: 700px;
}

.services-left {
    flex: 0.8;
    overflow: hidden;
}

.services-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-right {
    flex: 1.2;
    padding: 4rem;
    background: #f8f9fa;
}

.services-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-item p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.select-service {
    padding: 0.8rem 1.5rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.select-service:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.select-service:active {
    transform: scale(0.98);
}

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

.form-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #2c3e50;
    color: #fff;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.form-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.9rem;
}

.form-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
}

.main-form {
    width: 100%;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.service-display {
    padding: 1rem;
    background: #fff;
    border: 2px solid #667eea;
    border-radius: 6px;
    color: #667eea;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

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

.trust-left {
    flex: 1;
    overflow: hidden;
}

.trust-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.trust-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.trust-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.testimonial {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #667eea;
    border-radius: 6px;
}

.testimonial p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.testimonial cite {
    color: #2c3e50;
    font-weight: 600;
    font-style: normal;
}

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

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

.info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.info-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.info-left a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.info-left a:hover {
    text-decoration: underline;
}

.info-right {
    flex: 1;
    overflow: hidden;
}

.info-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.main-footer {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    gap: 4rem;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-left p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-email {
    color: #ecf0f1;
    cursor: default;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-references h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.footer-references p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary {
    background: #667eea;
    color: #fff;
}

.btn-primary:hover {
    background: #5568d3;
    transform: scale(1.05);
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-split,
    .form-split,
    .trust-split,
    .info-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-right,
    .services-left,
    .trust-left,
    .info-right {
        min-height: 400px;
    }

    .hero-right h1 {
        font-size: 2rem;
    }

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .hero-right,
    .intro-left,
    .services-right,
    .form-left,
    .trust-right,
    .info-left {
        padding: 2rem;
    }
}
