/* Header styles */
.header-title {
    font-family: TitleFont;
}

.header-subtitle {
    font-family: "Roboto", serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.5;
}

/* Conduct section styles */
.conduct-section {
    max-width: 800px;
    margin: 0 auto;
}

/* Card styles to match your aesthetic */
.conduct-section .card {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.conduct-section .card.color {
    background-color: rgba(62, 64, 77, 0.3);
    border-bottom: 1px solid var(--crimson);
    transition: background-color 0.3s;
}

/* Table styles with transparent white */
.conduct-section .table {
    color: rgba(255, 255, 255, 0.9); /* White with slight transparency */
    margin-bottom: 0;
}

/* Override bootstrap's table styles */
.table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-accent-bg: transparent;
}

.conduct-section .table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    background-color: transparent;
}

.conduct-section .table tbody tr:last-child {
    border-bottom: none;
}

.conduct-section .table tbody tr:hover {
    background-color: rgba(62, 64, 77, 0.5); /* Same as expanded accordion */
}

.conduct-section .table td {
    padding: 1rem;
    font-family: "Roboto", serif;
    font-size: 1.2em;
    color:white;
    line-height: 1.5;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .conduct-section .table td {
        font-size: 1em;
        padding: 0.75rem;
    }
    
    .header-subtitle {
        font-size: 0.9em;
    }
}