.webstudio_albaniav33_section {
    padding: 40px 20px;
    background: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.webstudio_albaniav33_container {
    max-width: 1200px;
    margin: 0 auto;
}

.webstudio_albaniav33_accordion {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.webstudio_albaniav33_item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.webstudio_albaniav33_item:last-child {
    border-bottom: none;
}

.webstudio_albaniav33_item_title {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    border: none;
    text-align: left;
    width: 100%;
    line-height: 1.4;
}

.webstudio_albaniav33_item_title:hover {
    background: #f8f9fa;
    color: #3498db;
}

.webstudio_albaniav33_active .webstudio_albaniav33_item_title {
    background: #3498db;
    color: white;
}

.webstudio_albaniav33_icon {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 16px;
    flex-shrink: 0;
}

.webstudio_albaniav33_icon_plus,
.webstudio_albaniav33_icon_minus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.webstudio_albaniav33_icon_plus {
    transform: translate(-50%, -50%);
}

.webstudio_albaniav33_icon_minus {
    transform: translate(-50%, -50%) rotate(90deg);
}

.webstudio_albaniav33_active .webstudio_albaniav33_icon_minus {
    transform: translate(-50%, -50%) rotate(0deg);
}

.webstudio_albaniav33_active .webstudio_albaniav33_icon_plus {
    opacity: 0;
}

.webstudio_albaniav33_content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.webstudio_albaniav33_active .webstudio_albaniav33_content {
    max-height: 200px;
    padding: 20px 24px;
}

.webstudio_albaniav33_content h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.webstudio_albaniav33_content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.webstudio_albaniav33_content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.webstudio_albaniav33_content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.webstudio_albaniav33_show_more_container {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.webstudio_albaniav33_show_more_btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.webstudio_albaniav33_show_more_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.webstudio_albaniav33_end_message {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
    color: #7f8c8d;
    font-size: 16px;
    font-weight: 500;
    display: none;
}

.webstudio_albaniav33_end_message.webstudio_albaniav33_show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .webstudio_albaniav33_section {
        padding: 20px 10px;
    }
    
    .webstudio_albaniav33_item_title {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .webstudio_albaniav33_active .webstudio_albaniav33_content {
        padding: 16px 20px;
    }
    
    .webstudio_albaniav33_icon {
        width: 16px;
        height: 16px;
        margin-right: 12px;
    }
    
    .webstudio_albaniav33_icon_plus,
    .webstudio_albaniav33_icon_minus {
        width: 10px;
    }
}

/* Animation for new items */
.webstudio_albaniav33_item[style*="opacity: 0"] {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}