* {
    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;
    overflow-x: hidden;
}

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

.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;
}

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

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

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

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

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7f;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #2c5f7f;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    border-left: 2px solid #ecf0f1;
    padding-left: 16px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c5f7f;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #1e4a63;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 127, 0.3);
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.intro-section {
    padding: 100px 40px;
    background: #ffffff;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.services-showcase {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

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

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

.service-card-row {
    max-width: 1300px;
    margin: 0 auto 40px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 15px;
}

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

.select-service {
    width: 100%;
    padding: 14px;
    background: #2c5f7f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #1e4a63;
}

.form-section {
    padding: 100px 40px;
    background: #ecf0f1;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.form-content {
    flex: 1;
    padding: 60px;
}

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

.form-content > p {
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #2c5f7f;
    font-weight: 600;
}

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

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

.trust-section {
    padding: 100px 40px;
    background: #2c3e50;
    color: white;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.trust-item p {
    color: #b2bec3;
    font-size: 16px;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    color: #b2bec3;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 16px;
}

.thanks-box .service-name {
    font-weight: 700;
    color: #2c5f7f;
}

.thanks-box a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2c5f7f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-box a:hover {
    background: #1e4a63;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-right {
        min-height: 400px;
    }

    .intro-wrapper {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
    }

    .form-visual {
        min-height: 300px;
    }

    .trust-grid {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
        font-size: 14px;
    }
}