.search-container {
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color: #e0f7fa;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1000;
}

.search-container input[type="text"] {
    border: none;
    outline: none;
    background-color: #e0f7fa;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    color: #333;
}

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

.search-container button {
    background-color: #0d6efd;
    border: none;
    border-radius: 50px;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: #0b5ed7;
}

.search-container .icon {
    color: #666;
    margin-right: 10px;
    font-size: 20px;
}

.example {
    text-align: center;
    color: #ccc;
    font-size: 12px;
    margin-top: 10px;
}

.img-maincontainer {
    text-align: right;
    margin-top: -140px;
    margin-bottom: -70px;
    margin-right: 20px;
    user-select: none;
}

.img-maincontainer img {
    width: 35%;
    pointer-events: none;
    user-select: none;
}

.hotline {
    white-space: nowrap;
    overflow: hidden;
    margin-top: 30px;
}

.hotline article {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.hotline img {
    width: 155px;
    height: 85px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.img-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.bg-light {
    background-color: transparent !important;
}

.main-heading h1, .main-heading h2, .divider {
    color: #333;
    text-align: center;
}

.main-heading h1 {
    font-size: 30px;
    font-weight: bold;
}

.main-heading h2 {
    font-size: 24px;
    font-weight: normal;
}

.main-heading {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.divider {
    width: 95%;
    border: 2px solid #333;
    margin: 10px 0;
    border-radius: 5px;
}

.container-new {
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.info {
    width: calc(50% - 7.5px);
    height: 560px;
    background-color: #f0f0f0;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.img-block {
    width: calc(50% - 7.5px);
    text-align: center;
}

.img-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    pointer-events: none;
    user-select: none;
}

.info {
    text-align: left;
}

.info h3 {
    font-size: 22px;
    margin: 0 0 15px;
    color: #1B1A1A;
}

.info p {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    margin-bottom: 13px;
    position: relative;
}

.info p::before {
    content: "\2022";
    font-weight: bold;
    display: inline-block;
    width: 15px;
    margin-left: -10px;
    position: absolute;
    left: 0;
}

@media (max-width: 1600px) {
    .info p {
        font-size: 12px;
    }
    .info {
        height: 450px;
    }
    .main-heading h1 {
        font-size: 26px;
        font-weight: bold;
    }
    
    .main-heading h2 {
        font-size: 20px;
        font-weight: normal;
    }

    .img-container {
        height: 315px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .container-new, .img-block {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .container-new {
        flex-direction: column;
        align-items: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .img-maincontainer {
        display: none;
    }

    .info, .img-block {
        width: 100%;
        margin-bottom: 20px;
    }

    .info {
        height: auto;
    }

    .search-container {
        width: 90%;
        margin-top: 20px !important;
    }

    .search-container input::placeholder {
        font-size: 13px;
        color: #999;
    }

    .search-container button {
        font-size: 13px;
    }

    .example {
        font-size: 10px;
        margin-bottom: 0px !important;
    }

    .main-heading h1 {
        font-size: 19px;
    }
    
    .main-heading h2 {
        font-size: 16px;
    }
    .img-container {
        height: 200px !important;
    }

    .hotline {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    
    .bg-light {
        padding-top: 10px !important;
    }
}