

.about-section {
    display: flex;
    align-items: center;    
    justify-content: space-between;
    gap: 60px;
    padding: 40px 0;
}


.about-text {
    flex: 1;
    max-width: 600px;
}

.page-title {
    font-size: 3rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-title span {
    color: #3b82f6;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.description {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 40px;
}


.stats-container {
    display: flex;
    gap: 50px;
}

.stat-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 5px;
}

.stat-box span {
    color: #777;
    font-weight: 500;
    font-size: 0.95rem;
}


.about-visual {
    flex: 0 0 400px; 
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 320px;    
    height: 400px;    
    z-index: 1;
}


.blue-accent-bg {
    position: absolute;
    top: 20px;       
    right: -20px;    
    width: 100%;     
    height: 100%;     
    background-color: #dbeafe; 
    border-radius: 20px;
    z-index: -1;      
}


.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
}


@media (max-width: 968px) {
    .about-section {
        flex-direction: column;
        text-align: left;
        gap: 60px;
    }

    .about-visual {
        flex: auto;
        width: 100%;
    }

    /* In about.css */
.image-wrapper {
    position: relative;
    width: 320px;
    height: 400px;
    z-index: 1;
    /* NEW: Add margins to make room for the blue box that hangs out */
    margin-right: 20px; 
    margin-bottom: 20px; 
}
}