/* Exam page - Logo theme (Black, Red, Yellow) */
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    margin: 0;
    color: var(--text-primary);
}

.in-between-header-and-section {
    height: 24px;
}

/* Hero / headline section - Logo theme */
.exam-elements-box {
    background: linear-gradient(155deg, #0f0f0f 0%, #1a1a1a 40%, #262626 70%, #0f0f0f 100%);
    padding: 80px 24px 70px;
    position: relative;
}

.exam-elements-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #c41e3a 30%, #eab308 50%, #c41e3a 70%, transparent 100%);
    z-index: 1;
}

.exam-main-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.exam-main-headline .center {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.02em;
}

.exam-main-headline .red {
    color: #c41e3a;
}

/* Divider */
.in-between-title-box {
    padding: 40px 24px 0;
}

.title-box-border {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: #e5e5e5;
}

.exam-title-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Accordion */
.exam-accordion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.exam-accordion-item {
    margin-bottom: 16px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.exam-accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.exam-accordion-item:last-child {
    margin-bottom: 80px;
}

.exam-accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.2s ease;
}

.exam-accordion-header:hover {
    background: #f8f9fa;
}

.exam-accordion-header:focus {
    outline: 2px solid #c41e3a;
    outline-offset: 2px;
}

.accordion-title {
    flex: 1;
}

.accordion-icon {
    margin-left: 16px;
    color: #c41e3a;
    transition: transform 0.25s ease;
}

.exam-accordion-item.active .accordion-icon i {
    transform: rotate(180deg);
}

.exam-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.exam-accordion-item.active .exam-accordion-content {
    max-height: 2500px;
}

/* PDF links section */
.pdf-links-section {
    padding: 20px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
}

.pdf-links-section p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pdf-links-section p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.pdf-links-section a {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
}

.pdf-links-section a:hover {
    text-decoration: underline;
}

/* PDF viewer */
.pdf-viewer-wrapper {
    background: #f8f9fa;
    padding: 24px;
    margin: 0 24px 24px;
    border-radius: var(--radius-md);
}

.pdf-iframe {
    width: 100%;
    height: 800px;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    display: block;
}

/* Download button */
.accordion-download-wrapper {
    padding: 20px 24px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #c41e3a 0%, #9e1830 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, #9e1830 0%, #7a1328 100%);
    transform: translateY(-1px);
}

.exam-accordion-content .pdf-viewer-wrapper {
    margin: 0 24px 24px;
}

.exam-accordion-content .pdf-iframe {
    height: 800px;
}

.in-between-box-container {
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .exam-accordion-content .pdf-iframe {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .exam-elements-box {
        padding: 60px 20px 50px;
    }

    .exam-accordion-container {
        padding: 24px 16px 60px;
    }

    .exam-accordion-header {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .exam-accordion-content .pdf-iframe {
        height: 500px;
    }

    .pdf-viewer-wrapper {
        margin: 0 16px 16px;
    }

    .exam-accordion-content .pdf-viewer-wrapper {
        margin: 0 16px 16px;
    }

    .accordion-download-wrapper {
        padding: 16px 20px;
    }

    .pdf-links-section {
        padding: 16px 20px;
    }
}
