﻿/* MAIN SECTION */
.ucg-contact-activity {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

/* BACKGROUND IMAGE WITH BLUR */
.ucg-bg {
    position: absolute;
    inset: 0;
    background: url('/images/about_images/6.jpg') center / cover no-repeat;
    filter: blur(7px);
    transform: scale(1.08);
    z-index: 1;
}

/* CONTENT LAYER */
.ucg-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

/* MESSAGE BOX */
.ucg-message-box {
    width: 55%;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* ACTIVITIES BOX (NOT BLURRED) */
.ucg-activities-box {
    width: 40%;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
/* Ensure both boxes stretch equally */
.ucg-message-box,
.ucg-activities-box {
    min-height: 400px; /* adjust once */
    display: flex;
    flex-direction: column;
}
