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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #229954;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

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

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

.hero-left,
.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.hero-right {
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

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

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

.split-image,
.split-content {
    flex: 1;
    min-width: 300px;
}

.split-image {
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

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

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-showcase {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-intro {
    font-size: 20px;
    color: #5a6c7d;
}

.service-split {
    display: flex;
    min-height: 450px;
    margin-bottom: 0;
    background: white;
}

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

.service-split:nth-child(even) {
    background: #f8f9fa;
}

.service-card {
    padding: 20px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.select-service {
    padding: 14px 28px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    padding: 16px 40px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

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

.reasons-list {
    margin-top: 32px;
}

.reason-item {
    margin-bottom: 32px;
}

.reason-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #27ae60;
}

.reason-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 16px;
    color: #27ae60;
    font-size: 18px;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #7f8c8d;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-container .back-home {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 32px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .back-home:hover {
    background: #229954;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 16px;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 16px;
    margin-left: 24px;
    color: #5a6c7d;
}

.legal-page li {
    margin-bottom: 8px;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-box {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.contact-info-box p {
    color: #5a6c7d;
    margin-bottom: 8px;
    font-size: 16px;
}

.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 22px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 16px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #27ae60;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.services-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-detailed {
    margin-bottom: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.service-detailed h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detailed p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detailed .service-price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.service-detailed ul {
    margin: 20px 0 20px 24px;
}

.service-detailed li {
    margin-bottom: 12px;
    color: #5a6c7d;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-split,
    .form-split,
    .why-choose-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-split.reverse,
    .why-choose-split.reverse {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content {
        padding: 40px 20px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .navigation {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .footer-content {
        gap: 30px;
    }
}