
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.blacklist-banner-section {
    position: relative;
    width: 100%;
    min-height: 280px;
    background: linear-gradient(to bottom, rgba(68, 68, 68, 0.95), rgba(0, 0, 0, 0.95)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1200&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #ff6b35;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(85, 85, 85) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 50px;
    gap: 40px;
}

.banner-left-section {
    flex: 1;
    max-width: 600px;
}

.banner-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #dc3545;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.banner-description {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.search-form-container {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.location-input-wrapper {
    position: relative;
    flex: 1;
}

.location-search-input {
    width: 100%;
    padding: 13px 45px 13px 18px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background-color: #fff;
    transition: border-color 0.3s;
}

.location-search-input::placeholder {
    color: #999;
}

.location-search-input:focus {
    border-color: #373737;
}

.search-icon-inside {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    pointer-events: none;
}

.search-submit-btn {
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 13px 40px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.search-submit-btn:hover {
    background-color: #202020;
}

.banner-right-section {
    flex: 0 0 auto;
}

.carpenter-image-box {
    width: 380px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid #fff;
}

.carpenter-work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .banner-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 30px;
    }

    .banner-left-section {
        max-width: 100%;
    }

    .search-form-container {
        margin: 0 auto;
    }

    .carpenter-image-box {
        width: 100%;
        max-width: 500px;
        height: 250px;
    }

    .banner-main-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .banner-main-title {
        font-size: 28px;
    }

    .banner-description {
        font-size: 14px;
    }

    .search-form-container {
        flex-direction: column;
        width: 100%;
    }

    .search-submit-btn {
        width: 100%;
    }

    .carpenter-image-box {
        height: 200px;
    }
}
