﻿.collapsible-sections {
    width: 330px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-header {
    position: relative;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 26px;
    cursor: pointer;
    color: #a2a2a2;
    padding: 10px;
    text-align: left;
    background-color: #f9f9f9;
    border: none;
    outline: none;
    width: 100%;
}

.section {
    border-bottom: 1px solid #00556c;
}

.section-header::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23808080%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: transform 0.3s;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.section-header.active::after {
    transform: translateY(-50%) rotate(180deg);
}

#special.active {
    color: #00556c;
}

.section-content {
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
}

    .section-content p {
        font-size: 0.75rem;
        font-weight: 400;
        line-height: 24px;
        width: 300px;
        height: 78px;
        margin: 0;
    }

@media (min-width: 576px) {
    .collapsible-sections {
        margin-top: 50px;
        width: 453px;
    }

    .section-header::after {
        height: 34px;
        width: 34px;
    }

    .section-header {
        width: 423px;
        font-size: 1.875rem;
        padding-bottom: 20px;
    }

    .section-content {
        width: 423px;
    }

        .section-content p {
            font-size: 1rem;
            height: 86px;
            width: 423px;
        }
}

@media (min-width: 992px) {
    .collapsible-sections {
        width: 641px;
    }

    .section-header {
        font-size: 2rem;
        width: 641px;
        height: 83px;
    }

    .section-content {
        height: 82px;
        width: 641px;
        padding: 0;
        padding-left: 10px;
    }

        .section-content p {
            font-size: 1.25rem;
            height: 82px;
            width: 641px;
        }
}

@media (min-width: 1200px) {
    .collapsible-sections {
        width: 1026px;
    }

    .section-header {
        width: 1026px;
    }

    .section-content {
        width: 1026px;
    }
}

@media (min-width: 2000px) {
    .collapsible-sections {
        width: 1200px;
    }

    .section-header {
        width: 1200px;
        height: 90px;
        padding: 0;
    }

    .section-content {
        width: 1200px;
    }
}
