/* Section */
.smarter-alt {
    background: #ffffff;
    padding: 100px 20px;
}

.smarter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Images */
.smarter-images {
    position: relative;
    flex: 1;
    min-height: 420px;
}

.smarter-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Large image */
.img-large {
    width: 300px;
    height: 420px;
    margin-left: auto;
}

/* Small image (overlapping) */
.img-small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    height: 260px;
}

/* Content */
.smarter-content {
    flex: 1;
}

.smarter-title {
    font-size: 44px;
    color: #003451;
    line-height: 1.2;
    margin-bottom: 30px;
}

.smarter-text {
    font-size: 18px;
    color: #003451;
    line-height: 1.7;
    max-width: 520px;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .smarter-alt {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .smarter-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }

    .smarter-images {
        min-height: auto;
    }

    .img-large {
        width: 100%;
        height: 320px;
    }

    .img-small {
        position: relative;
        width: 70%;
        height: 220px;
        margin: -80px auto 0;
        margin-bottom: 20px;
    }

    .smarter-text {
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .smarter-title {
        font-size: 30px;
    }

    .smarter-text {
        font-size: 16px;
    }
}
