/* ================= Main Code===================== */


.container {
    width: 95%;
    max-width: 1400px;
    margin: 20px auto;
}

/* Title */
.title {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    color: #0079ff;
    font-size: 40px;
    margin-bottom: 25px;
}

/* Accordion */
.accordion {
    background: #0baa02;
    margin-bottom: 5px;
    border-radius: 8px;
    overflow: hidden;
}

/* Header */
.accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: white;
    cursor: pointer;
}

.accordion-header p {
    font-size: 20px;
    font-weight: 500;
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.accordion.active .arrow {
    transform: rotate(180deg);
}

.pdf-icon {
    width: 22px;
}

/* Body */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #eee;
    padding: 0 10px;
}

iframe {
    width: 100%;
    height: 600px;
    border: none;
    margin-top: 15px;
}
