.template4-about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.about-content {
    display: flex;
    align-items: stretch;
    gap: 50px;
    height: auto;

}

.about-image-container {
    flex: 0 0 500px;
    position: relative;
    height: auto;
}

.about-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
    padding-right: 50px;
    height: auto;
}


.about-title {
    font-size: 40px !important;
    font-weight: 700;
    font-family: 'Montserrat';
    color: #161616 !important;
    margin-top: 100px;
    margin-bottom: 32px;
    margin-left: 88px;
}

.about-desc {
    font-size: 18px !important;
    font-weight: 500;
    font-family: 'Montserrat';
    color: #555 !important;
    margin-bottom: 48px;
    margin-left: 88px;
}

.about-button {
    margin-left: 88px;
    font-size: 18px !important;
    font-family: 'Montserrat';
    font-weight: 600;
    margin-bottom: 90px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .template4-about-section {
        padding: 0;
    }
    .about-content {
        flex-direction: column;
    }
    .about-text {
        margin: 0;
        width: 100%;
        position: relative;
        margin-top: 10px; /* Added margin for text below image in mobile */
        margin-left: 0; /* Reset left margin in mobile */
        order: 1;
    }
    .about-image-container {
        width: 100%;
        margin-top: 0; /* Remove top margin */
    }
    .about-image-wrapper {
        position: relative;
        width: 100%;
        height: 400px; /* Smaller height for mobile */
        margin: 0; /* Remove margins */
    }
    .about-desc {
        font-size: 16px !important;
        color: #555 !important;
        margin-bottom: 48px;
        margin-left: 60px;
    }
    .about-title {
        font-size: 32px !important;
        font-weight: bold;
        color: #161616 !important;
        margin-top: 40px;
        margin-bottom: 32px;
        margin-left: 60px;
    }
    .about-button {
        margin-left: 60px;
        margin-bottom: 90px;
    }
}