.banner{
    height: auto;
    min-height: 420px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(../source/show-background-living-room.jpg); */
}
.content{
    top: 55%;
    z-index: -1;
}







.m1{
    padding: 50px;
}
.t1{
    width: 100%;
    text-align: center;
}
.t1 p{
    font-size: 30px;
}
.d1{
    margin: 50px 0 0 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.d1 div{
    width: 550px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    padding: 0 0 10px 0;
    margin: 0 0 70px 0;
}
.d1 div img{
    display: block;
    width: inherit;
    transition: .5s;
    cursor: pointer;
}
.d1 img:hover{
    transform: scale(1.05);
}
.d1 div h2{
    margin: 20px 0 10px 0;
    text-align: center;
    font-size: 25px;
}
.d1 div span{
    font-size: 25px;
}
.d1 div button{
    cursor: pointer;
    font-size: 15px;
    background: #ffffff;
    border: 2px solid #eb595f;
    padding: 10px;
    margin: 10px 0;
    border-radius: 15px;
    font-weight: bold;
    transition: .5s;
}

.d1 div button.full-width{
    width: 100%;
    box-sizing: border-box;
    margin: 10px 20px;
    width: calc(100% - 40px);
}

.d1 div button:hover{
    color: #ffffff;
    background: #eb595f;
}

/* ========================================
   RESPONSIVE DESIGN - SERVICE PAGES
   ======================================== */

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .m1 {
        padding: 30px 20px;
    }
    
    .t1 p {
        font-size: 18px;
    }
    
    .d1 {
        gap: 20px;
        justify-content: center;
    }
    
    .d1 div {
        width: 280px;
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .d1 div h2 {
        font-size: 20px;
    }
    
    .d1 div span {
        font-size: 16px;
    }
    
    .d1 div button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Mobile Styles (320px - 768px) */
@media screen and (max-width: 768px) {
    .banner {
        min-height: 300px;
    }
    
    .content {
        padding: 20px;
    }
    
    .content h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .m1 {
        padding: 20px 15px;
    }
    
    .t1 p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .d1 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .d1 div {
        width: 100%;
        max-width: 320px;
        padding: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .d1 div img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .d1 div h2 {
        font-size: 18px;
        margin: 15px 0 10px 0;
    }
    
    .d1 div span {
        font-size: 16px;
        font-weight: bold;
        color: #eb595f;
        margin: 10px 0;
        display: block;
    }
    
    .d1 div button {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 15px;
        background: #eb595f;
        color: white;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .d1 div button:hover {
        background: #d63d44;
        transform: scale(1.02);
    }
    
    .m-last {
        margin-top: 40px;
        padding: 20px;
    }
    
    .last {
        text-align: center;
    }
    
    .last h1 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .last button {
        width: 200px;
        padding: 12px;
        font-size: 16px;
    }
}

/* Small Mobile Styles (320px - 480px) */
@media screen and (max-width: 480px) {
    .content h1 {
        font-size: 24px;
    }
    
    .m1 {
        padding: 15px 10px;
    }
    
    .t1 p {
        font-size: 14px;
    }
    
    .d1 div {
        max-width: 280px;
        padding: 15px;
    }
    
    .d1 div img {
        height: 150px;
    }
    
    .d1 div h2 {
        font-size: 16px;
    }
    
    .d1 div span {
        font-size: 14px;
    }
    
    .d1 div button {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .last h1 {
        font-size: 20px;
    }
    
    .last button {
        width: 180px;
        font-size: 14px;
    }
}
