/* Custom Event Cards */
.custom-event-card {
    background-color: #fff;
    border: 1px solid #3FAE7A;
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.custom-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.custom-event-card .card-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 42px;
    font-weight: 400;
    color: #002B5B;
    line-height: 1;
}

.custom-event-card .card-title-wrap {
    margin-top: 50px;
    margin-bottom: 20px;
}

.custom-event-card h3 {
    font-size: 18px;
    font-weight: 400;
    color: #3FAE7A;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    letter-spacing: 0.5px;
}

.custom-event-card .title-underline {
    width: 35px;
    height: 2px;
    background-color: #3FAE7A;
    margin-top: 15px;
}

.custom-event-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Ensure the section sits correctly */
.custom-event-section {
    position: relative;
    z-index: 10;
    padding-top: 50px;
    padding-bottom: 50px;
}

