.page-content {
    padding: 3rem 0;
}

.trials-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.trials-intro h1 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.trials-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trials-table-section {
    margin-bottom: 4rem;
}

.trials-table-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.trials-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.trials-table thead {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--purple) 100%);
    color: var(--white);
}

.trials-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.trials-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.trials-table tbody tr:hover {
    background: var(--light);
}

.trials-table tbody tr:last-child td {
    border-bottom: none;
}

.accordion-section {
    margin-bottom: 4rem;
}

.accordion-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--primary-orange) 100%);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
}

.accordion-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .trials-table {
        font-size: 0.9rem;
    }

    .trials-table th,
    .trials-table td {
        padding: 1rem;
    }
}

