.features-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.feature-card.odd {
    flex-direction: row;
    justify-content: flex-start;
}

.feature-card.even {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.feature-number {
    font-size: 70px;
    color: #002B6B;
    opacity: 0.15;
    font-weight: normal;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    background: #fff;
    padding: 23px 14px 23px 22px;
    border-radius: 18px;
    border: 1px solid #EDEEF0;
    box-shadow: 9px 23px 94px rgba(0, 43, 107, 0.25);
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 53px;
    height: 53px;
    border-radius: 50px;
}

.icon-box img, .icon-box svg {
    width: 23px;
    fill: #0066FF;
    font-size: 23px;
}

.icon-box i.elementor-icon {
    width: 23px !important;
    height: 23px !important;
    color: inherit !important;
    font-size: 23px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.feature-content h3 {
    margin: 0;
    font-size: 23px;
    color: #1E242C;
    font-weight: 500;
}

.feature-content p {
    margin: 8px 0 0;
    font-size: 15px;
    color: #414D60;
    line-height: 23px;
    letter-spacing: -0.6px;
}

@media (max-width: 768px) {
    .section-container {
        margin-top: 40px;
    }

    .section-container h2 {
        font-size: 40px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .feature-number {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .feature-number {
        display: none;
    }

    .feature-card {
        margin-top: 10px;
        gap: 15px;
    }

    .feature-box {
        padding: 15px;
    }
}


/* Events CSS */

.event-table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px 8px 0px 0px;
}

.event-table thead tr {
    border-bottom: 0.5px solid #0066FF;
}

.event-table thead th {
    color: #1a1a1a;
    font-weight: 700;
    padding: 15px 20px;
    border: none;
    text-transform: uppercase;
    border-bottom: 1px solid #000000;
    font-size: 16px;
}

.event-table thead th{
    border-radius: 8px 8px 0px 0px;
}

.event-table thead th:first-child {
    border-top-left-radius: 8px;
}

.event-table thead th:last-child {
    border-top-right-radius: 8px;
}

table.table.event-table thead tr th {
    border-top: 0px;
}
.event-table tbody tr {
    transition: all 0.3s ease;
}

.event-table tbody tr:hover {
    background-color: #f8f9fa;
}

.event-table td {
    padding: 8px 20px !important;
    vertical-align: middle;
    border-left: 0px !important;
    border-right: 0px !important;
    border-top: 0px !important;
    border-bottom: 0.5px solid #0066ff69!important;
}

.event-title a{
    /* font-weight: 500; */
    color: #2c3e50;
}

.event-date {
    color: #666;
}

.event-mode {
    color: #2c3e50;
}

.event-cta .btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.event-cta .btn-primary {
    background-color: #0d6efd;
    border: none;
}

.event-cta .btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .event-table thead {
        display: none;
    }

    .event-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
    }

    .event-table td {
        display: block;
        text-align: left;
        padding: 12px 15px;
        border: none;
        border-bottom: 1px solid #dee2e6;
    }

    .event-table td:last-child {
        border-bottom: none;
    }

    .event-table td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
        color: #1a1a1a;
    }

    .event-cta {
        text-align: center;
    }

    .event-cta .btn {
        width: 100%;
        margin-top: 5px;
    }
}