/* --- about.css --- */

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 120px;
}
.image-gallery img {
    width: 100%;
    height: auto;
}
.org-list-wrap {
    max-width: 1280px;
    padding: 0 5%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 5%;
}
.org-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #ddd;
}
.org-list li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    line-height: 1.5;
}
.terms-section {
    margin-top: 120px;
    text-align: center;
}
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 15px 40px;
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
}
.pdf-link:hover {
    background: #e0e0e0;
}
.pdf-link .material-symbols-outlined {
    color: #e4007f;
}

@media screen and (max-width: 1024px) {
    
.image-gallery {
    margin-bottom: 100px;
}

.org-list-wrap {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    box-sizing: border-box;
}
.org-list {
    border-top: none;
}
.terms-section {
    margin-top: 100px;
}

}

@media screen and (max-width: 768px) {

.image-gallery {
    margin-bottom: 80px;
}
.terms-section {
    margin-top: 80px;
}

}