body {
    font-family: AktivGrotesk;
}

.dropdown-section {
    text-align: center;
    cursor: pointer;
    position: relative;
}

.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
    padding: 0px 20px;
}

.dropdown-header h2 {
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2.2px;
    color: #fff;
}

.dropdown-header .arrow {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
    transform: rotate(-180deg);
}

.dropdown-section.active .arrow {
    transform: rotate(0deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    max-width: 1110px;
    line-height: 1.6;
}

.dropdown-content p {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 1.98px;
}

.dropdown-section.active .dropdown-content {
    max-height: 2000px;
    padding-bottom: 20px;
}

@media (max-width: 1000px) {
    .dropdown-content p {
        margin: 20px;
    }
}

@media (max-width: 768px) {
    .dropdown-header h2 {
        font-size: 13px;
        font-weight: 250;
        letter-spacing: 1.43px;
    }

    .dropdown-content p {
        font-size: 12px;
        font-weight: 300;
        letter-spacing: 1.32px;
    }

    .dropdown-header {
        gap: 17px;
    }

    .dropdown-header .arrow {
        width: 25px;
        height: 25px;
    }
}