﻿.glance-section {
    width: 100%;
    margin: 50px auto;
    font-family: 'Segoe UI', sans-serif;
}

.glance-container {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

/* Left side */
.glance-left {
    background: #8DC63F; /* Green */
    color: #fff;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

    .glance-left h2 {
        font-size: 32px;
        font-weight: bold;
        color: #7B1B53; /* Maroon text */
        margin-top: 10px;
        line-height: 1.4;
    }

.glance-logo {
    font-size: 50px;
    color: #7B1B53;
}

/* Right side */
.glance-right {
    background: #7B1B53; /* Maroon */
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 30px;
    color: #fff;
}

.glance-item {
    text-align: center;
    flex: 1;
}

    .glance-item i {
        font-size: 28px;
        margin-bottom: 10px;
        display: block;
    }

    .glance-item h3 {
        font-size: 28px;
        font-weight: bold;
        margin: 0;
    }

    .glance-item p {
        font-size: 14px;
        margin: 5px 0 0;
        opacity: 0.9;
    }

/* Responsive */
@media (max-width: 768px) {
    .glance-container {
        flex-direction: column;
    }

    .glance-left, .glance-right {
        flex: unset;
        text-align: center;
    }

    .glance-right {
        flex-wrap: wrap;
    }

    .glance-item {
        flex: 50%;
        margin-bottom: 20px;
    }
}
