.faq-container {
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    margin: 0;
    padding: 40px 0
}

.faq-title {
    text-align: left;
    color: #000;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: 'Exo', sans-serif
}

.dropdown-block {
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
    width: 100%;
    padding: 0;
    box-sizing: border-box
}

.dropdown-block * {
    box-sizing: border-box
}

.dropdown-block details {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin: 15px 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08)
}

.dropdown-block details:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(39, 136, 232, 0.1)
}

.dropdown-block details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2788e8, transparent);
    opacity: 0.3
}

.dropdown-block summary {
    padding: 25px 30px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    margin: 0
}

.dropdown-block summary:hover {
    background: #f8f9fa
}

.dropdown-block summary::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid #2788e8;
    border-bottom: 2px solid #2788e8;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.dropdown-block details[open] summary::after {
    transform: rotate(225deg)
}

.dropdown-block ul {
    padding: 0 30px 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    margin: 0
}

.dropdown-block .content {
    padding: 0 30px 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    margin: 0
}

.dropdown-block details[open] ul,
.dropdown-block details[open] .content {
    max-height: 1000px;
    opacity: 1
}

.dropdown-block li {
    list-style: none;
    padding: 5px 0;
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.4s ease forwards
}

.dropdown-block .content {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.4s ease forwards
}

.dropdown-block .content p {
    margin: 0 0 15px 0;
}

.dropdown-block .content p:last-child {
    margin-bottom: 0;
}

.dropdown-block .content strong {
    color: #2c3e50;
    font-weight: 600;
}

.dropdown-block li:nth-child(1) { animation-delay: 0.1s }
.dropdown-block li:nth-child(2) { animation-delay: 0.2s }
.dropdown-block li:nth-child(3) { animation-delay: 0.3s }
.dropdown-block li:nth-child(4) { animation-delay: 0.4s }
.dropdown-block li:nth-child(5) { animation-delay: 0.5s }

.dropdown-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #2788e8;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(39, 136, 232, 0.2)
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}