.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.summary-card {
    padding: 1.5rem;
    text-align: center;
}

.summary-card .value {
   font-size: clamp(16pt, 2vw + 0.5rem, 22pt);
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.summary-card .label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    display: block;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    align-items: center;
    font-size: 0.95rem;
}

.info-grid dt {
    font-weight: 500;
}

.info-grid dd {
    margin: 0;
    font-weight: 500;
    text-align: right;
}

.info-grid dd a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.info-grid dd a:hover {
    text-decoration: underline;
}
.collapsible-content {
    display: none;
    
    transition: all 0.3s ease-in-out;  
}

 
.collapsible-content.show {
    display: block;
}

.toggle-button {
    background-color: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    color: #007bff;  
    cursor: pointer;
    font-weight: bold;
    font-family: inherit;
    font-size: 14px;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.toggle-button:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}