* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}
.container-main {
    padding-top: 110px;
    width: 100%
}

.banner {
    
    padding: 60px 0;
    border-radius: 10px; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path/to/pattern.png') repeat;
    opacity: 0.1;
}

.banner .text {
    position: relative;
    z-index: 1;
}

.banner h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600;
}

.banner p {
    color: #fff;
    font-size: 18px;
    opacity: 0.9;
}
    .container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
   
}

.lift_box {
    flex: 0 0 300px;
    background: #fff;
    border-right: 2px solid rgb(187, 184, 184);

    transition: transform 0.3s ease;
}

.lift_box:hover {
    transform: translateY(-5px);
}

.lift_down {
    padding: 30px;
    text-align: center;
}

.lift_down .icon img {
    border-radius: 25%;
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.lift_down .text p:first-child {
    color: #4a0015;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.lift_down .text p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.lift_down .down a {
    display: inline-block;
    background: #4a0015;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lift_down .down a:hover {
    background: #600020;
    transform: translateY(-2px);
}

.right_box {
    flex: 1;
    min-width: 300px;
}

.right_box .box {
    background: #fff;
    padding: 40px;
    

}

.right_box .box h1 {
    color: #4a0015;
    font-size: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #600020;
    text-align: left;
    font-weight: 600;
}

.right_box .box p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .banner h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .lift_box {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .banner {
        padding: 40px 0;
    }
    
    .banner h1 {
        font-size: 28px;
    }
    
    .banner p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container-main {
        padding-top: 60px;
    }
    .container {
        padding: 0 10px;
    }
    
    .lift_down {
        padding: 20px;
    }
    
    .right_box .box {
        padding: 25px;
    }
    
    .banner h1 {
        font-size: 24px;
    }
}