/* Modern Event Table Styles */
.section-1 {
    width: 100%;
    max-width: 900px;
    margin: 32px auto 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.page-content-container {
    margin-top: 20px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
}
.heading {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.btn {
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,98,77,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 8px;
}
.btn:hover {
    background-color: var(--primary-color-light);
    color: var(--primary-color-darker);
    box-shadow: 0 4px 16px rgba(0,98,77,0.12);
}
.btn-red {
    border: none;
    background: #e53935;
    color: white;
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(229,57,53,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 8px;
}
.btn-red:hover {
    background-color: #b71c1c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(229,57,53,0.12);
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
    background: none;
    font-family: 'Inter', Arial, sans-serif;
}
.info-table th, .info-table td {
    border: none;
    padding: 18px 16px;
    text-align: left;
    font-size: 1.08rem;
}
.info-table th {
    background: none;
    color: var(--primary-color-darker);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    padding-bottom: 8px;
}
.info-table tr {
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    border-radius: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.info-table tr:hover {
    box-shadow: 0 6px 24px 0 rgba(0,98,77,0.10);
    transform: translateY(-2px) scale(1.01);
}
.info-table tr td:first-child {
    border-radius: 16px 0 0 16px;
}
.info-table tr td:last-child {
    border-radius: 0 16px 16px 0;
}
.info-table tr:nth-child(even) {
    background: #f8fafb;
}
.h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}
.table-head {
    font-weight: bold;
    background: none;
    color: var(--primary-color-darker);
}
@media (max-width: 700px) {
    .section-1 {
        width: 98%;
        padding: 0 2vw;
    }
    .header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .info-table th, .info-table td {
        padding: 12px 6px;
        font-size: 0.98rem;
    }
    .btn, .btn-red {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}
